(line: string)
| 13 | } |
| 14 | |
| 15 | export function emitLine(line: string): void { |
| 16 | process.stdout.write(line + '\n') |
| 17 | } |
| 18 | |
| 19 | export function emitOk(message: string): void { |
| 20 | process.stdout.write(message + '\n') |
no outgoing calls
no test coverage detected