(name: string, value: string)
| 40 | } |
| 41 | |
| 42 | export function label(name: string, value: string): string { |
| 43 | const pad = 14 - name.length; |
| 44 | return ` ${c.dim(name)}${" ".repeat(Math.max(1, pad))}${c.bold(value)}`; |
| 45 | } |
| 46 | |
| 47 | export function errorBox(title: string, hint?: string, suggestion?: string): void { |
| 48 | console.error(`\n${c.error("\u2717")} ${c.bold(title)}`); |