(key: string, value: CacheEntry<Value>)
| 33 | } |
| 34 | |
| 35 | set(key: string, value: CacheEntry<Value>): unknown { |
| 36 | this._cache.set(key, value); |
| 37 | |
| 38 | return undefined; |
| 39 | } |
| 40 | |
| 41 | delete(key: string): unknown { |
| 42 | this._cache.delete(key); |
no outgoing calls
no test coverage detected