blob: c3b015c244a4610a41b951fc6b37fb0bd61f76ba [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = new SlashCommandBuilder()
.setName("help")
.setDescription("Shows help for commands")
const callback = async (interaction: CommandInteraction): Promise<any> => {
interaction.reply("hel p"); // TODO: FINISH THIS FOR RELEASE
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };