work.suroh.tk/node_modules/rxjs/util/MapPolyfill.d.ts

11 lines
253 B
TypeScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
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;
}