(cacheName: string)
| 3 | export interface CacheStorage { |
| 4 | match (request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>, |
| 5 | has (cacheName: string): Promise<boolean>, |
| 6 | open (cacheName: string): Promise<Cache>, |
| 7 | delete (cacheName: string): Promise<boolean>, |
| 8 | keys (): Promise<string[]> |
no outgoing calls
no test coverage detected