Initial Save
This commit is contained in:
9
node_modules/graphql/jsutils/ObjMap.js.flow
generated
vendored
Normal file
9
node_modules/graphql/jsutils/ObjMap.js.flow
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
// @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