levelcache/ts/levelcache.classes.cacheentry.ts
2020-02-15 22:38:28 +00:00

21 lines
406 B
TypeScript

import * as plugins from './levelcache.plugins';
export interface ICacheEntryConstructorOptions {}
/**
* a CacheEntry
*/
export class CacheEntry {
public static fromBuffer() {}
public static fromString() {}
type: 'string' | 'blob';
mode: 'complete' | 'stream';
keyArg: string;
cacheStream: ReadableStream;
cacheContents: Buffer;
cacheValue: string;
constructor(optionsArg: {}) {}
}