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