UNPKG

303 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { Transform, PruneSchemaOptions } from '@graphql-tools/utils';
3export default class PruneTypes implements Transform {
4 private readonly options;
5 constructor(options: PruneSchemaOptions);
6 transformSchema(schema: GraphQLSchema): GraphQLSchema;
7}