FLUJOS/BACK_BACK/node_modules/graphql/jsutils/ObjMap.js.flow
2025-11-07 00:06:12 +01:00

8 lines
319 B
Text
Executable file

// @flow strict
export type ObjMap<T> = { [key: string]: T, __proto__: null, ... };
export type ObjMapLike<T> = ObjMap<T> | { [key: string]: T, ... };
export type ReadOnlyObjMap<T> = { +[key: string]: T, __proto__: null, ... };
export type ReadOnlyObjMapLike<T> =
| ReadOnlyObjMap<T>
| { +[key: string]: T, ... };