mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-26 20:50:30 +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;
|