mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-04 09:21:25 +03:00
Add autocomplete, button, menu, and modal files
This commit is contained in:
12
src/buttons/claim.js
Normal file
12
src/buttons/claim.js
Normal 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
12
src/buttons/close.js
Normal 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
12
src/buttons/create.js
Normal 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
12
src/buttons/unclaim.js
Normal 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) { }
|
||||
};
|
Reference in New Issue
Block a user