| 135 | } |
| 136 | |
| 137 | export class MemoryCacheStore implements CacheStore { |
| 138 | constructor (opts?: MemoryCacheStoreOpts) |
| 139 | |
| 140 | get (key: CacheKey): GetResult | Promise<GetResult | undefined> | undefined |
| 141 | |
| 142 | createWriteStream (key: CacheKey, value: CacheValue): Writable | undefined |
| 143 | |
| 144 | delete (key: CacheKey): void | Promise<void> |
| 145 | } |
| 146 | |
| 147 | export interface SqliteCacheStoreOpts { |
| 148 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…