uni-ticket-system/node_modules/licia/QuickLru.d.ts

11 lines
223 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
declare class QuickLru {
constructor(max: number);
has(key: string): boolean;
remove(key: string): void;
get(key: string): any;
set(key: string, val: any): void;
clear(): void;
}
export = QuickLru;