Add autocomplete, button, menu, and modal files

This commit is contained in:
Isaac
2022-08-02 18:03:55 +01:00
parent 327573a38a
commit e28392352c
11 changed files with 102 additions and 6 deletions

12
src/buttons/claim.js Normal file
View File

@@ -0,0 +1,12 @@
const { Button } = require('@eartharoid/dbf');
module.exports = class ClaimButton extends Button {
constructor(client, options) {
super(client, {
...options,
id: 'claim',
});
}
async run (id, interaction) {}
};

12
src/buttons/close.js Normal file
View File

@@ -0,0 +1,12 @@
const { Button } = require('@eartharoid/dbf');
module.exports = class CloseButton extends Button {
constructor(client, options) {
super(client, {
...options,
id: 'close',
});
}
async run(id, interaction) { }
};

12
src/buttons/create.js Normal file
View File

@@ -0,0 +1,12 @@
const { Button } = require('@eartharoid/dbf');
module.exports = class CreateButton extends Button {
constructor(client, options) {
super(client, {
...options,
id: 'create',
});
}
async run(id, interaction) { }
};

12
src/buttons/unclaim.js Normal file
View File

@@ -0,0 +1,12 @@
const { Button } = require('@eartharoid/dbf');
module.exports = class UnclaimButton extends Button {
constructor(client, options) {
super(client, {
...options,
id: 'unclaim',
});
}
async run(id, interaction) { }
};