(subcommand: string)
| 155 | |
| 156 | /** Usage text for a canonical subcommand (falls back to top-level help). */ |
| 157 | export function formatSubcommandHelp(subcommand: string): string { |
| 158 | return SUBCOMMAND_HELP[subcommand] ?? formatTopLevelHelp(); |
| 159 | } |
| 160 | |
| 161 | export function formatInteractiveNoArgClarification(): string { |
| 162 | return [ |
no test coverage detected