printSchema.d.ts 329 B

12345
  1. import type { GraphQLNamedType } from '../type/definition';
  2. import type { GraphQLSchema } from '../type/schema';
  3. export declare function printSchema(schema: GraphQLSchema): string;
  4. export declare function printIntrospectionSchema(schema: GraphQLSchema): string;
  5. export declare function printType(type: GraphQLNamedType): string;