(error?: string)
| 744 | |
| 745 | // help message |
| 746 | public help(error?: string): string | HelpError { |
| 747 | if (error) { |
| 748 | return new HelpError(`\n${bold(red(`!`))} ${error}\n${Init.help}`) |
| 749 | } |
| 750 | return Init.help |
| 751 | } |
| 752 | } |
| 753 | |
| 754 | // order matters for the error message. |