import LRU from 'lru-cache'; import CacheStore, { CacheValue } from './CacheStore'; export default class MemoryCacheStore implements CacheStore { _lru: LRU; constructor(max?: number); get(key: string): Promise; all(): Promise; put(key: string, value: CacheValue, minutes: number): Promise; forget(key: string): Promise; flush(): Promise; getPrefix(): string; } //# sourceMappingURL=MemoryCacheStore.d.ts.map