mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
10 lines
270 B
TypeScript
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
|