Files
joel/commands/command.d.ts
2024-05-02 13:22:15 +02:00

13 lines
252 B
TypeScript

import type {
CacheType,
ChatInputCommandInteraction,
SlashCommandBuilder,
} from "discord.js";
export interface Command {
data: SlashCommandBuilder;
execute: (
interaction: ChatInputCommandInteraction<CacheType>
) => Promise<void>;
}