You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 rivejä
246 B

  1. export declare class FastMap {
  2. private values;
  3. delete(key: string): boolean;
  4. set(key: string, value: any): FastMap;
  5. get(key: string): any;
  6. forEach(cb: (value: any, key: any) => void, thisArg?: any): void;
  7. clear(): void;
  8. }