(text: string)
| 31 | const successOutput = (text: string) => output(text, ansiColorCodes.green); |
| 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) => |
no test coverage detected