UNPKG

267 BTypeScriptView Raw
1export declare class Printer {
2 indentStr: string;
3 output: string;
4 constructor(indentLevel: number);
5 printLn(str: string): void;
6 print(str: string): void;
7 printEmptyLn(): void;
8 printIndentedLn(str: string): void;
9 getOutput(): string;
10}