A section heading with an underline, e.g. `Options` followed by a divider.
(title: string)
| 1715 | |
| 1716 | /** A section heading with an underline, e.g. `Options` followed by a divider. */ |
| 1717 | #uiSectionTitle(title: string): string { |
| 1718 | const { bold, cyan } = this.colors; |
| 1719 | return `${bold(cyan(title))}\n${this.#uiDivider()}`; |
| 1720 | } |
| 1721 | |
| 1722 | /** A single status message prefixed with an icon (`✔`/`✖`/`⚠`/`ℹ`). */ |
| 1723 | #uiStatusLine(kind: StatusKind, message: string): string { |
no test coverage detected