(key: CacheKey)
| 109 | */ |
| 110 | export interface CacheStore { |
| 111 | get(key: CacheKey): GetResult | Promise<GetResult | undefined> | undefined |
| 112 | |
| 113 | createWriteStream(key: CacheKey, val: CacheValue): Writable | undefined |
| 114 |
no outgoing calls
no test coverage detected