mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-02 09:44:14 +00:00
17 lines
No EOL
563 B
TypeScript
17 lines
No EOL
563 B
TypeScript
import { SlashCommandBuilder, CommandInteraction } from 'discord.js';
|
|
|
|
interface Command {
|
|
data: Omit<SlashCommandBuilder, "addSubcommand" | "addSubcommandGroup">;
|
|
execute: (interaction: CommandInteraction) => Promise<void>;
|
|
}
|
|
|
|
const command: Command = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('server')
|
|
.setDescription('Provides information about the server.'),
|
|
execute: async (interaction) => {
|
|
await interaction.reply(`This server is ${interaction?.guild?.name} and has ${interaction?.guild?.memberCount} members.`);
|
|
},
|
|
};
|
|
|
|
export default command; |