import { ApplicationCommandOptionType, CommandInteraction } from "discord.js";export interface CommandOptions { name: string; description: string; type: ApplicationCommandOptionType; required?: boolean;}export interface Command { name: string; description: string; options?: CommandOptions[]; execute(interactionCreate: CommandInteraction): Promise<void>;}