Current section

Files

Jump to
common_graphql_client priv npm node_modules graphql jsutils ObjMap.js.flow
Raw

priv/npm/node_modules/graphql/jsutils/ObjMap.js.flow

// @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, ... };