Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

8 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;