UNPKG

nimiq-vitepress-theme

Version:

Nimiq UI theme for VitePress

10 lines (9 loc) 191 B
export declare class LRUCache { max: any; cache: any; constructor(max?: number); get(key: any): any; set(key: any, val: any): void; first(): any; clear(): void; }