(error?: string)
| 237 | } |
| 238 | |
| 239 | help(error?: string): string | HelpError { |
| 240 | if (error) { |
| 241 | return new HelpError(`\n${bold(red(`!`))} ${error}\n${Studio.help}`) |
| 242 | } |
| 243 | |
| 244 | return Studio.help |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Parses arguments passed to this command, and starts Studio |