UNPKG

@neosjs/vitepress-theme

Version:

NeosJS VitePress theme

10 lines (9 loc) 217 B
export declare class LRUCache<K, V> { private max; private cache; constructor(max?: number); get(key: K): V | undefined; set(key: K, val: V): void; first(): K | undefined; clear(): void; }