Skip to content
This repository has been archived by the owner on Jan 29, 2022. It is now read-only.

v1.1.0

Latest
Compare
Choose a tag to compare
@S222em S222em released this 01 Dec 16:52
· 4 commits to master since this release
3bdda25
  • Fixed issue with number arguments
  • Added ability to use object components instead of class components:
module.exports = {
    name: 'test',
    type: ComponentType.BUTTON,
    run: async (interaction, args) => {
        console.log(args);
        return await interaction.reply('Hello!');
    },
};