Files
discordeno/src/handlers/commands/APPLICATION_COMMAND_DELETE.ts
T
2021-05-21 15:55:49 +00:00

8 lines
443 B
TypeScript

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 handleApplicationCommandDelete(data: DiscordGatewayPayload) {
eventHandlers.applicationCommandDelete?.(data.d as ApplicationCommandCreateUpdateDelete);
}