import { CacheType, CommandInteraction, Events, Interaction, SlashCommandBuilder } from "discord.js"; export const data = new SlashCommandBuilder() export const execute = async (interaction: CommandInteraction): Promise => {} export const on: { [event in Events]?: (interaction: Interaction) => Promise; } = {} export default [data, execute, on] as const;