()
| 613 | headers: this.headers, |
| 614 | body: JSON.stringify({content}), |
| 615 | }); |
| 616 | } |
| 617 | async delete() { |
| 618 | await fetch(`${this.info.api}/channels/${this.channel.id}/messages/${this.id}`, { |
| 619 | headers: this.headers, |
| 620 | method: "DELETE", |
| 621 | }); |
| 622 | } |
| 623 | deleteEvent() { |
no outgoing calls
no test coverage detected