(key: string)
| 63 | } |
| 64 | |
| 65 | private request(key: string): Request { |
| 66 | return this.adapter.newRequest('/' + key); |
| 67 | } |
| 68 | |
| 69 | 'delete'(key: string): Promise<boolean> { |
| 70 | return this.cache.delete(this.request(key), this.cacheQueryOptions); |
no test coverage detected