blob: 3f2129720a31be17968109c4fcc1aeb0fac73ba8 [file] [log] [blame]
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;
}