(id: string, token?: string)
| 1159 | } |
| 1160 | |
| 1161 | export async function getWebhook(id: string, token?: string) { |
| 1162 | let resp = await OpWrappers.callAsyncOp({ |
| 1163 | kind: "discord_webhook_get", |
| 1164 | arg: { |
| 1165 | webhook_id: id, |
| 1166 | token: token ?? null, |
| 1167 | }, |
| 1168 | }) |
| 1169 | |
| 1170 | return Webhook.fromInternal(resp) |
| 1171 | } |
| 1172 | |
| 1173 | export async function getGuildWebhooks() { |
| 1174 | let resp = await OpWrappers.callAsyncOp({ |
nothing calls this directly
no test coverage detected