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