export interface CacheStats { gets: number; hits: number; } /** * Simple interface for a string-keyed cache */ export interface SimpleCache { put(key: string, value: T): void; get(key: string): T; evict(key: string): void; stats: CacheStats; } //# sourceMappingURL=SimpleCache.d.ts.map