const { ButtonInteraction } = require('discord.js'); const ExtendedClient = require('../../class/ExtendedClient'); module.exports = { customId: 'test', /** * * @param {ExtendedClient} client * @param {ButtonInteraction} interaction */ run: async (client, interaction) => { await interaction.reply({ content: `The button has been successfully responded! ${interaction.customI.split('_')[1]}`, ephemeral: true }); } };