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

11 lines
468 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/integrations/INTEGRATION_DELETE.ts
import { eventHandlers } from "../../bot.ts";
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
import type { IntegrationDelete } from "../../types/integrations/integration_delete.ts";
export function handleIntegrationDelete(data: DiscordGatewayPayload) {
eventHandlers.integrationDelete?.(data.d as IntegrationDelete);
}