export interface ICacheStorage { get(key: string, immutable?: boolean): Promise; set(key: string, ttlMilliseconds: number, value: T, immutable?: boolean): Promise; evict(key: string): Promise; } //# sourceMappingURL=storage-interface.d.ts.map