(text: string)
| 29 | } |
| 30 | |
| 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); |
no test coverage detected