(message: string)
| 17 | } |
| 18 | |
| 19 | export function emitOk(message: string): void { |
| 20 | process.stdout.write(message + '\n') |
| 21 | } |
| 22 | |
| 23 | export function emitError(message: string): void { |
| 24 | process.stderr.write(`zn: ${message}\n`) |
no outgoing calls
no test coverage detected