MapPolyfill.d.ts 253 B

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