import { GraphQLSchema } from 'graphql'; import { Transform } from '@graphql-tools/utils'; export default class RemoveObjectFieldsWithDeprecation implements Transform { private readonly transformer; constructor(reason: string | RegExp); transformSchema(originalSchema: GraphQLSchema): GraphQLSchema; }