UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

14 lines (13 loc) 331 B
export declare class LRUCache<T> { private readonly map; private readonly maxEntries; private readonly ttlMs; constructor(options?: { maxEntries?: number; ttlMs?: number; }); get(key: string): T | undefined; set(key: string, value: T): void; get size(): number; clear(): void; }