(title: string, hint?: string, suggestion?: string)
| 45 | } |
| 46 | |
| 47 | export function errorBox(title: string, hint?: string, suggestion?: string): void { |
| 48 | console.error(`\n${c.error("\u2717")} ${c.bold(title)}`); |
| 49 | if (hint) console.error(`\n ${c.dim(hint)}`); |
| 50 | if (suggestion) console.error(` ${c.accent(suggestion)}`); |
| 51 | console.error(); |
| 52 | } |
no test coverage detected