A branded title, e.g. `⬡ webpack build`.
(title: string)
| 1709 | |
| 1710 | /** A branded title, e.g. `⬡ webpack build`. */ |
| 1711 | #uiHeader(title: string): string { |
| 1712 | const { bold, cyan } = this.colors; |
| 1713 | return `${bold(cyan("⬡"))} ${bold(cyan(title))}`; |
| 1714 | } |
| 1715 | |
| 1716 | /** A section heading with an underline, e.g. `Options` followed by a divider. */ |
| 1717 | #uiSectionTitle(title: string): string { |
no outgoing calls
no test coverage detected