const { Client, Interaction } = require('discord.js'); module.exports = { name: 'test', // Command name description: 'yes', // Command description type: 'STRING', // Command type /** * @param {Client} client * @param {Interaction} interaction * @param {String[]} args */ exec: async (client, interaction, args) => { return interaction.followUp({ content: 'hi!' }) } };