Discord bot to open dong files
1import { 2 ChatInputCommandInteraction, 3 Client, 4 CommandInteraction, 5 SlashCommandBuilder, 6} from "discord.js"; 7import type { customClient } from "../.."; 8 9export const data = new SlashCommandBuilder() 10 .setName("ping") 11 .setDescription("Replies with pong!"); 12export const execute = async ( 13 interaction: ChatInputCommandInteraction & { client: customClient } 14) => { 15 await interaction.reply("Pong!"); 16};