(name: string)
| 68 | } |
| 69 | |
| 70 | async 'delete'(name: string): Promise<boolean> { |
| 71 | if (this.caches.has(name)) { |
| 72 | this.caches.delete(name); |
| 73 | return true; |
| 74 | } |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | dehydrate(): string { |
| 79 | const dehydrated: DehydratedCacheStorage = {}; |