Files
starface-outlook-sync-addin/node_modules/thingies/lib/LruMap.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

7 lines
182 B
TypeScript

export declare class LruMap<K, V> extends Map<K, V> {
readonly limit: number;
constructor(limit?: number);
set(key: K, value: V): this;
get(key: K): V | undefined;
}