UNPKG

@quantara/sdk

Version:

JavaScript/TypeScript SDK for interacting with Quantara Protocol on Neura Testnet

11 lines (10 loc) 273 B
export declare class LRUCache<T> { private capacity; private cache; private recentKeys; constructor(capacity: number); has(key: string): boolean; get(key: string): T | undefined; set(key: string, value: T): void; private updateRecentKeys; }