mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-23 01:36:14 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { ASTNode } from './ast';
|
|
|
|
/**
|
|
* Converts an AST into a string, using one set of reasonable
|
|
* formatting rules.
|
|
*/
|
|
export function print(ast: ASTNode): string;
|