UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

9 lines (8 loc) 246 B
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; }