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

9 lines
246 B
TypeScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
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;
}