(title: string)
| 1400 | const header = (title: string) => this.#uiHeader(title); |
| 1401 | // Section headings ("Options", "Commands", …) get a colored title and an underline. |
| 1402 | const sectionTitle = (title: string) => this.#uiSectionTitle(title); |
| 1403 | const outputIncorrectUsageOfHelp = () => { |
| 1404 | this.logger.error("Incorrect use of help"); |
| 1405 | this.logger.error( |
nothing calls this directly
no test coverage detected