MapPolyfill.d.ts 253 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 export declare class MapPolyfill { size: number; private _values; private _keys; get(key: any): any; set(key: any, value: any): this; delete(key: any): boolean; clear(): void; forEach(cb: Function, thisArg: any): void; }