1 | export declare type ObjMap<T> = Record<string, T>;
|
2 | export declare type ObjMapReadOnly<T> = Readonly<Record<string, Readonly<T>>>;
|
3 | export declare type MaybePromise<T> = Promise<T> | T;
|
4 | export declare type Thunk<T> = (() => any) | T;
|
5 | export declare type ThunkWithSchemaComposer<T, SC> = ((schemaComposer: SC) => T) | T;
|
6 | export declare type DirectiveArgs = {
|
7 | [key: string]: any;
|
8 | };
|
9 | export declare type Directive = {
|
10 | name: string;
|
11 | args?: DirectiveArgs;
|
12 | };
|
13 | export declare type Extensions = {
|
14 | [key: string]: any;
|
15 | directives?: Directive[];
|
16 | };
|
17 | //# sourceMappingURL=definitions.d.ts.map |
\ | No newline at end of file |