blob: c5f44cb5aef7297309fe8b20fb36a3f3c7608c9e [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("remove")
.setDescription("Removes a role from someone")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [role/remove]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };