File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3344,7 +3344,7 @@ interface CacheStorage {
3344
3344
delete(cacheName: string): Promise<boolean>;
3345
3345
has(cacheName: string): Promise<boolean>;
3346
3346
keys(): Promise<string[]>;
3347
- match(request: RequestInfo, options?: CacheQueryOptions ): Promise<Response | undefined>;
3347
+ match(request: RequestInfo, options?: MultiCacheQueryOptions ): Promise<Response | undefined>;
3348
3348
open(cacheName: string): Promise<Cache>;
3349
3349
}
3350
3350
Original file line number Diff line number Diff line change @@ -703,7 +703,7 @@ interface CacheStorage {
703
703
delete ( cacheName : string ) : Promise < boolean > ;
704
704
has ( cacheName : string ) : Promise < boolean > ;
705
705
keys ( ) : Promise < string [ ] > ;
706
- match ( request : RequestInfo , options ?: CacheQueryOptions ) : Promise < Response | undefined > ;
706
+ match ( request : RequestInfo , options ?: MultiCacheQueryOptions ) : Promise < Response | undefined > ;
707
707
open ( cacheName : string ) : Promise < Cache > ;
708
708
}
709
709
Original file line number Diff line number Diff line change 2174
2174
"match" : {
2175
2175
"name" : " match" ,
2176
2176
"override-signatures" : [
2177
- " match(request: RequestInfo, options?: CacheQueryOptions ): Promise<Response | undefined>"
2177
+ " match(request: RequestInfo, options?: MultiCacheQueryOptions ): Promise<Response | undefined>"
2178
2178
]
2179
2179
}
2180
2180
}
You can’t perform that action at this time.
0 commit comments