mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 19:26:40 +00:00
7 lines
170 B
TypeScript
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;
|