mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
11 lines
555 B
TypeScript
11 lines
555 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/commands/APPLICATION_COMMAND_CREATE.ts
|
|
|
|
|
|
import { eventHandlers } from "../../bot.ts";
|
|
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
|
|
import type { ApplicationCommandCreateUpdateDelete } from "../../types/interactions/commands/application_command_create_update_delete.ts";
|
|
|
|
export function handleApplicationCommandCreate(data: DiscordGatewayPayload) {
|
|
eventHandlers.applicationCommandCreate?.(data.d as ApplicationCommandCreateUpdateDelete);
|
|
}
|