biofriction-wp-theme/node_modules/rxjs/util/MapPolyfill.d.ts

11 lines
253 B
TypeScript

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;
}