federation/gateway/node_modules/graphql/language/printer.d.ts
2020-11-14 16:43:58 +01:00

7 lines
170 B
TypeScript

import { ASTNode } from './ast';
/**
* Converts an AST into a string, using one set of reasonable
* formatting rules.
*/
export function print(ast: ASTNode): string;