(error?: string)
| 337 | |
| 338 | // help message |
| 339 | public help(error?: string): string | HelpError { |
| 340 | if (error) { |
| 341 | return new HelpError(`\n${bold(red(`!`))} ${error}\n${Generate.help}`) |
| 342 | } |
| 343 | return Generate.help |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | function getCurrentClientVersion(): string | null { |