UNPKG

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