File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3344,7 +3344,7 @@ interface CacheStorage {
33443344 delete(cacheName: string): Promise<boolean>;
33453345 has(cacheName: string): Promise<boolean>;
33463346 keys(): Promise<string[]>;
3347- match(request: RequestInfo, options?: CacheQueryOptions ): Promise<Response | undefined>;
3347+ match(request: RequestInfo, options?: MultiCacheQueryOptions ): Promise<Response | undefined>;
33483348 open(cacheName: string): Promise<Cache>;
33493349}
33503350
Original file line number Diff line number Diff line change @@ -703,7 +703,7 @@ interface CacheStorage {
703703 delete ( cacheName : string ) : Promise < boolean > ;
704704 has ( cacheName : string ) : Promise < boolean > ;
705705 keys ( ) : Promise < string [ ] > ;
706- match ( request : RequestInfo , options ?: CacheQueryOptions ) : Promise < Response | undefined > ;
706+ match ( request : RequestInfo , options ?: MultiCacheQueryOptions ) : Promise < Response | undefined > ;
707707 open ( cacheName : string ) : Promise < Cache > ;
708708}
709709
Original file line number Diff line number Diff line change 21742174 "match" : {
21752175 "name" : " match" ,
21762176 "override-signatures" : [
2177- " match(request: RequestInfo, options?: CacheQueryOptions ): Promise<Response | undefined>"
2177+ " match(request: RequestInfo, options?: MultiCacheQueryOptions ): Promise<Response | undefined>"
21782178 ]
21792179 }
21802180 }
You can’t perform that action at this time.
0 commit comments