bvs-nitro-did/commands.js
2026-06-12 10:30:21 -06:00

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,
}
]
},
]