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

9 lines
246 B
TypeScript

export declare class FastMap {
private values;
delete(key: string): boolean;
set(key: string, value: any): FastMap;
get(key: string): any;
forEach(cb: (value: any, key: any) => void, thisArg?: any): void;
clear(): void;
}