supamend
Version:
Pluggable DevSecOps Security Scanner with 10+ scanners and multiple reporting channels
12 lines • 322 B
TypeScript
export declare class CacheManager {
private cache;
private defaultTTL;
private cleanupInterval;
constructor();
set(key: string, value: any, ttl?: number): void;
get<T>(key: string): T | null;
clear(): void;
private cleanup;
destroy(): void;
}
//# sourceMappingURL=cache-manager.d.ts.map