(key: string)
| 67 | } |
| 68 | |
| 69 | 'delete'(key: string): Promise<boolean> { |
| 70 | return this.cache.delete(this.request(key), this.cacheQueryOptions); |
| 71 | } |
| 72 | |
| 73 | keys(): Promise<string[]> { |
| 74 | return this.cache.keys().then((requests) => requests.map((req) => req.url.slice(1))); |