UNPKG

356 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { Transform } from '@graphql-tools/utils';
3export default class RemoveObjectFieldDeprecations implements Transform {
4 private readonly removeDirectives;
5 private readonly removeDeprecations;
6 constructor(reason: string | RegExp);
7 transformSchema(originalSchema: GraphQLSchema): GraphQLSchema;
8}