printer.d.ts 182 B

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