joel joel joel

This commit is contained in:
2024-05-02 13:22:15 +02:00
commit 73200479bd
20 changed files with 684 additions and 0 deletions

12
commands/command.d.ts vendored Normal file
View File

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