UNPKG

625 BTypeScriptView Raw
1import { GraphQLObjectType, GraphQLSchema, GraphQLInputObjectType, GraphQLInterfaceType, GraphQLEnumType } from 'graphql';
2import { SchemaMapper } from './Interfaces.js';
3export declare function mapSchema(schema: GraphQLSchema, schemaMapper?: SchemaMapper): GraphQLSchema;
4export declare function correctASTNodes(type: GraphQLObjectType): GraphQLObjectType;
5export declare function correctASTNodes(type: GraphQLInterfaceType): GraphQLInterfaceType;
6export declare function correctASTNodes(type: GraphQLInputObjectType): GraphQLInputObjectType;
7export declare function correctASTNodes(type: GraphQLEnumType): GraphQLEnumType;