(text: string)
| 149 | } |
| 150 | |
| 151 | export function printSuccess(text: string) { |
| 152 | writeStdOut(successOutput(text)); |
| 153 | } |
| 154 | |
| 155 | export function printError(errorText: string, indentCount: number = 0) { |
| 156 | writeStdErr(errorOutput(errorText), indentCount); |
no test coverage detected