blob: 895f035c191116ae600cff4bbfcf5524c3048b29 [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("kick")
.setDescription("Clears a users messages in a channel")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [mod/kick]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };