@backland/schema
Version:
TypeScript schema declaration and validation library with static type inference
5 lines (4 loc) • 374 B
TypeScript
import { GraphQLSchemaWithUtils } from '../createGraphQLSchema';
import { SchemaQueryTemplatesOptions } from './getQueryTemplates';
export declare function generateClientUtils(schema: GraphQLSchemaWithUtils, options?: SchemaQueryTemplatesOptions): Promise<string>;
export declare function saveGraphQLClientUtils(schema: GraphQLSchemaWithUtils, DEST: string): Promise<void>;