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