export declare type ObjMap = Record; export declare type ObjMapReadOnly = Readonly>>; export declare type MaybePromise = Promise | T; export declare type Thunk = (() => any) | T; export declare type ThunkWithSchemaComposer = ((schemaComposer: SC) => T) | T; export declare type DirectiveArgs = { [key: string]: any; }; export declare type Directive = { name: string; args?: DirectiveArgs; }; export declare type Extensions = { [key: string]: any; directives?: Directive[]; }; //# sourceMappingURL=definitions.d.ts.map