Files
n8n-mcp/dist/utils/simple-cache.d.ts
2025-12-05 12:01:31 +01:00

10 lines
270 B
TypeScript

export declare class SimpleCache {
private cache;
private cleanupTimer;
constructor();
get(key: string): any;
set(key: string, data: any, ttlSeconds?: number): void;
clear(): void;
destroy(): void;
}
//# sourceMappingURL=simple-cache.d.ts.map