1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-18 04:40:59 -05:00
Daggerbot-TS/src/commands/kick.ts

19 lines
625 B
TypeScript
Raw Normal View History

2023-05-23 01:14:17 -04:00
import Discord from 'discord.js';
2023-04-14 06:47:58 -04:00
import TClient from '../client.js';
2023-12-24 10:21:40 -05:00
import Punish from '../components/Punish.js';
export default class Kick {
static run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
2023-08-30 04:34:59 -04:00
Punish(client, interaction, 'kick');
2023-12-24 10:21:40 -05:00
}
static data = new Discord.SlashCommandBuilder()
2023-03-05 05:04:10 -05:00
.setName('kick')
2023-12-24 10:21:40 -05:00
.setDescription('Kick a member from the server')
2023-05-23 01:14:17 -04:00
.addUserOption(x=>x
2023-03-05 05:04:10 -05:00
.setName('member')
.setDescription('Which member to kick?')
.setRequired(true))
2023-05-23 01:14:17 -04:00
.addStringOption(x=>x
2023-03-05 05:04:10 -05:00
.setName('reason')
.setDescription('Reason for the kick'))
2023-12-24 10:21:40 -05:00
}