241 BTypeScriptView Raw
1import { GraphQLSchema } from '../type/schema';
2/**
3 * Sort GraphQLSchema.
4 *
5 * This function returns a sorted copy of the given GraphQLSchema.
6 */
7export declare function lexicographicSortSchema(
8 schema: GraphQLSchema,
9): GraphQLSchema;