12345678 |
- import { GraphQLSchema } from 'graphql';
- import { PruneSchemaOptions } from './types.cjs';
- /**
- * Prunes the provided schema, removing unused and empty types
- * @param schema The schema to prune
- * @param options Additional options for removing unused types from the schema
- */
- export declare function pruneSchema(schema: GraphQLSchema, options?: PruneSchemaOptions): GraphQLSchema;
|