UNPKG

170 BTypeScriptView Raw
1import { ASTNode } from './ast';
2
3/**
4 * Converts an AST into a string, using one set of reasonable
5 * formatting rules.
6 */
7export function print(ast: ASTNode): string;