ObjMap.js.flow 320 B

123456789
  1. // @flow strict
  2. export type ObjMap<T> = { [key: string]: T, __proto__: null, ... };
  3. export type ObjMapLike<T> = ObjMap<T> | { [key: string]: T, ... };
  4. export type ReadOnlyObjMap<T> = { +[key: string]: T, __proto__: null, ... };
  5. export type ReadOnlyObjMapLike<T> =
  6. | ReadOnlyObjMap<T>
  7. | { +[key: string]: T, ... };