* Output the corresponding help message * When a sub-command is matched, output the help message for the command * Otherwise output the global one. *
()
| 132 | * |
| 133 | */ |
| 134 | outputHelp(): void { |
| 135 | if (this.matchedCommand) { |
| 136 | this.matchedCommand.outputHelp() |
| 137 | } else { |
| 138 | this.globalCommand.outputHelp() |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Output the version number. |