| 1 | import type { RequestInfo, Response, Request } from './fetch' |
| 2 | |
| 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[]> |
| 9 | } |
| 10 | |
| 11 | declare const CacheStorage: { |
| 12 | prototype: CacheStorage |
no outgoing calls
no test coverage detected
searching dependent graphs…