mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-21 00:49:09 +00:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
export declare class FastMap {
|
|
private values;
|
|
delete(key: string): boolean;
|
|
set(key: string, value: any): FastMap;
|
|
get(key: string): any;
|
|
forEach(cb: (value: any, key: any) => void, thisArg?: any): void;
|
|
clear(): void;
|
|
}
|