10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { GraphQLSchema } from '../type/schema';
|
|
/**
|
|
* Sort GraphQLSchema.
|
|
*
|
|
* This function returns a sorted copy of the given GraphQLSchema.
|
|
*/
|
|
export declare function lexicographicSortSchema(
|
|
schema: GraphQLSchema,
|
|
): GraphQLSchema;
|