export const RUNTIME_LIB_NAME = "gqlgen-runtime"; export interface Config { verbose?: boolean; endpoint?: string; useGet?: boolean; // the schema string schema?: string; // the output dir output?: string; methodPrefix?: string; methodSuffix?: string; // options?: Options headers?: Record; scalarTypes?: { [k: string]: string }; onlyEsModules?: boolean; onlyCJSModules?: boolean; sortProperties?: boolean; } // export interface Options { // schemaValidation?: GraphQLSchemaValidationOptions // schemaPrint?: SchemaPrintOptions // schemaBuild?: BuildSchemaOptions & ParseOptions // }