mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
|
import { GraphQLSchema } from '../type/schema';
|
||
|
|
||
|
/**
|
||
|
* Sort GraphQLSchema.
|
||
|
*
|
||
|
* This function returns a sorted copy of the given GraphQLSchema.
|
||
|
*/
|
||
|
export function lexicographicSortSchema(schema: GraphQLSchema): GraphQLSchema;
|