(name: string)
| 72 | } |
| 73 | |
| 74 | createMessageCommand(name: string): Commands.MessageCommandBuilder { |
| 75 | const builder = Commands.messageCommand(name) |
| 76 | builder.onBuilt = (cmd) => this.createCommand(cmd) |
| 77 | |
| 78 | return builder |
| 79 | } |
| 80 | |
| 81 | private storagePluginId() { |
| 82 | if (this.customStorageScope) { |
nothing calls this directly
no test coverage detected