(ref: MessageRef, ui: Renderable)
| 110 | } |
| 111 | |
| 112 | async update(ref: MessageRef, ui: Renderable): Promise<MessageRef> { |
| 113 | const bound = await this.bindForPost(ui); |
| 114 | await this.deps.adapter.update(ref, bound.root); |
| 115 | await this.bindReaction(ref.id, bound); |
| 116 | return ref; |
| 117 | } |
| 118 | |
| 119 | async delete(ref: MessageRef): Promise<void> { |
| 120 | await this.deps.adapter.delete(ref); |
nothing calls this directly
no test coverage detected