github-pages-deploy-action/node_modules/graphql/jsutils/ObjMap.js.flow
2020-03-06 22:45:40 -05:00

10 lines
320 B
Plaintext

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