16 lines
470 B
JavaScript
16 lines
470 B
JavaScript
const Discord = require('discord.js');
|
|
|
|
module.exports = [
|
|
{
|
|
name: 'checkmember',
|
|
description: 'Check if a member is boosting the guild.',
|
|
options: [
|
|
{
|
|
name: 'user',
|
|
description: 'The user to check. If not provided, checks the user who ran the command.',
|
|
type: Discord.ApplicationCommandOptionType.User, // USER type
|
|
required: false,
|
|
}
|
|
]
|
|
},
|
|
] |