printer.d.ts 170 B

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