* Sets the description of the command. * @param t a human readable description. * @return the command, for chaining.
(t: string)
| 72 | * @return the command, for chaining. |
| 73 | */ |
| 74 | description(t: string): Command { |
| 75 | this.descriptionText = t; |
| 76 | return this; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Sets an alias for a command. |
no outgoing calls
no test coverage detected