(fields: CreateMessageFields)
| 74 | } |
| 75 | |
| 76 | execute(fields: CreateMessageFields) { |
| 77 | if (!this.token) { |
| 78 | throw new Error("Webhook token is null") |
| 79 | } |
| 80 | |
| 81 | return executeWebhook(this.id, this.token, fields) |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | export type WebhookType = |
no test coverage detected