n8n-nodes-wax
Version:
n8n Community Node Package for the WAX Blockchain
13 lines (12 loc) • 388 B
TypeScript
export interface ICache {
get<T = any>(key: string): T | null;
put(key: string, value: any, timeout: number): void;
remove(key: string): void;
}
export declare class MemoryCache implements ICache {
private readonly store;
constructor();
get<T = any>(key: string): T | null;
put(key: string, value: any, timeout: number): void;
remove(key: string): void;
}