Files
2025-05-15 13:35:49 +10:00

7 lines
182 B
TypeScript

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