* Adds a string to current line, flushes current line and starts a new line. * @param line * @returns
(line: string | BasicBuilder<ContextType>)
| 64 | * @returns |
| 65 | */ |
| 66 | writeLine(line: string | BasicBuilder<ContextType>): this { |
| 67 | return this.write(line).newLine() |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Flushes current line and starts a new line. New line starts at previously configured indentation level |
no test coverage detected