* Sets an alias for a command. * @param aliases an alternativre name for the command. Users will be able to call the command via this name. * @return the command, for chaining.
(alias: string)
| 82 | * @return the command, for chaining. |
| 83 | */ |
| 84 | alias(alias: string): Command { |
| 85 | this.aliases.push(alias); |
| 86 | return this; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Sets any options for the command. |
no outgoing calls
no test coverage detected