UNPKG

460 BTypeScriptView Raw
1import { type GraphQLSchema } from "graphql";
2export interface PrintSchemaOptions {
3 sortedSchema: boolean;
4}
5export declare const defaultPrintSchemaOptions: PrintSchemaOptions;
6export declare function emitSchemaDefinitionFileSync(schemaFilePath: string, schema: GraphQLSchema, options?: PrintSchemaOptions): void;
7export declare function emitSchemaDefinitionFile(schemaFilePath: string, schema: GraphQLSchema, options?: PrintSchemaOptions): Promise<void>;