(text: string)
| 32 | const warningOutput = (text: string) => output(text, ansiColorCodes.yellow); |
| 33 | const errorOutput = (text: string) => output(text, ansiColorCodes.red); |
| 34 | const calloutOutput = (text: string) => output(text, ansiColorCodes.cyan); |
| 35 | |
| 36 | const write = (stream: NodeJS.WriteStream, text: string, indentCount: number) => |
| 37 | stream.write(`${" ".repeat(indentCount)}${text}\n`); |
no test coverage detected