Discord Bot BaseRespondersButtonshow to reply discord buttonsReply to a button by setting the Responder type to button. command.tsconst row = createRow( new ButtonBuilder({ customId: "confirm/button", label: "Confirm", style: ButtonStyle.Success }) ); interaction.reply({ ephemeral, components: [row] }); responder.tsnew Responder({ customId: "confirm/button", type: ResponderType.Button, cache: "cached", async run(interaction) { interaction.update({ ephemeral, content: "Confirmed", components: [] }); }, });PreviousRespondersNextSelect menu