This commit is contained in:
8
node_modules/graphql/jsutils/ObjMap.js.flow
generated
vendored
Normal file
8
node_modules/graphql/jsutils/ObjMap.js.flow
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
// @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, ... };
|
||||
Reference in New Issue
Block a user