sam522's picture
node
d4b85c0
raw
history blame contribute delete
182 Bytes
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;