FastMap.d.ts 246 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 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; }