(name: string)
| 65 | } |
| 66 | |
| 67 | createUserCommand(name: string): Commands.UserCommandBuilder { |
| 68 | const builder = Commands.userCommand(name) |
| 69 | builder.onBuilt = (cmd) => this.createCommand(cmd) |
| 70 | |
| 71 | return builder |
| 72 | } |
| 73 | |
| 74 | createMessageCommand(name: string): Commands.MessageCommandBuilder { |
| 75 | const builder = Commands.messageCommand(name) |
nothing calls this directly
no test coverage detected