Your IP : 216.73.216.52


Current Path : /home/deltalab/PMS/partner-manager-backend/node_modules/graphql/jsutils/
Upload File :
Current File : //home/deltalab/PMS/partner-manager-backend/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, ... };