UNPKG

335 BTypeScriptView Raw
1import { GraphQLDirective, GraphQLNamedType, GraphQLSchema } from 'graphql';
2export declare function healSchema(schema: GraphQLSchema): GraphQLSchema;
3export declare function healTypes(originalTypeMap: Record<string, GraphQLNamedType | null>, directives: ReadonlyArray<GraphQLDirective>, config?: {
4 skipPruning: boolean;
5}): void;