fix(core): update

This commit is contained in:
2020-02-14 18:10:10 +00:00
parent 1cdba38408
commit 26511fc10e
5 changed files with 40 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
import * as plugins from './levelcache.plugins';
export class CacheEntry {
type: 'string' | 'blob';
mode: 'complete' | 'stream';
keyArg: string;
cacheStream: ReadableStream;
cacheContents: Buffer;
cacheValue: string;
}