import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js" import { ExtendedClient as Client } from "~/utils/Client" export interface ICommand { name: string description: string dev?: boolean public: boolean subcommands?: boolean data: SlashCommandBuilder execute: (arg: { interaction: ChatInputCommandInteraction, client: Client }) => Promise }