UNPKG

312 BTypeScriptView Raw
1import { GraphQLSchema, GraphQLNamedType } from 'graphql';
2import { Transform } from '../transforms/transforms';
3export default class FilterTypes implements Transform {
4 private filter;
5 constructor(filter: (type: GraphQLNamedType) => boolean);
6 transformSchema(schema: GraphQLSchema): GraphQLSchema;
7}