forked from projectmoon/tenebrous-dicebot
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
|
export declare class Printer {
|
||
|
indentStr: string;
|
||
|
output: string;
|
||
|
constructor(indentLevel: number);
|
||
|
printLn(str: string): void;
|
||
|
print(str: string): void;
|
||
|
printEmptyLn(): void;
|
||
|
printIndentedLn(str: string): void;
|
||
|
getOutput(): string;
|
||
|
}
|