1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-30 05:01:00 -04:00
Daggerbot-TS/src/commands/kick.ts
2023-08-30 18:34:59 +10:00

18 lines
594 B
TypeScript

import Discord from 'discord.js';
import TClient from '../client.js';
import Punish from '../funcs/Punish.js';
export default {
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
Punish(client, interaction, 'kick');
},
data: new Discord.SlashCommandBuilder()
.setName('kick')
.setDescription('Boot a member from the server')
.addUserOption(x=>x
.setName('member')
.setDescription('Which member to kick?')
.setRequired(true))
.addStringOption(x=>x
.setName('reason')
.setDescription('Reason for the kick'))
}