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

11 lines
455 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/channels/STAGE_INSTANCE_DELETE.ts
import { eventHandlers } from "../../bot.ts";
import type { StageInstance } from "../../types/channels/stage_instance.ts";
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
export function handleStageInstanceDelete(data: DiscordGatewayPayload) {
eventHandlers.stageInstanceDelete?.(data.d as StageInstance);
}