import { SlashCommandBuilder, CommandInteraction } from 'discord.js'; interface Command { data: Omit; execute: (interaction: CommandInteraction) => Promise; } const command: Command = { data: new SlashCommandBuilder() .setName('ping') .setDescription('Replies with Pong!'), execute: async (interaction) => { await interaction.reply(`Pong!`); }, }; export default command;