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

11 lines
428 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/invites/INVITE_CREATE.ts
import { eventHandlers } from "../../bot.ts";
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
import type { InviteCreate } from "../../types/invites/invite_create.ts";
export function handleInviteCreate(data: DiscordGatewayPayload) {
eventHandlers.inviteCreate?.(data.d as InviteCreate);
}