| 163 | } |
| 164 | |
| 165 | export class SqliteCacheStore implements CacheStore { |
| 166 | constructor (opts?: SqliteCacheStoreOpts) |
| 167 | |
| 168 | /** |
| 169 | * Closes the connection to the database |
| 170 | */ |
| 171 | close (): void |
| 172 | |
| 173 | get (key: CacheKey): GetResult | Promise<GetResult | undefined> | undefined |
| 174 | |
| 175 | createWriteStream (key: CacheKey, value: CacheValue): Writable | undefined |
| 176 | |
| 177 | delete (key: CacheKey): void | Promise<void> |
| 178 | } |
| 179 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…