swc/crates/swc_bundler/tests/.cache/deno/3b3bde5711e64534043a7b51c43619ce548ce4a2.ts
2021-11-09 20:42:49 +09:00

11 lines
461 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/webhooks/delete_webhook_with_token.ts
import { rest } from "../../rest/rest.ts";
import { endpoints } from "../../util/constants.ts";
/** Delete a webhook permanently. Returns a undefined on success */
export async function deleteWebhookWithToken(webhookId: bigint, webhookToken: string) {
return await rest.runMethod<undefined>("delete", endpoints.WEBHOOK(webhookId, webhookToken));
}