blob: 568a90c5455988c55a6225070cc4fd0d3648fe11 [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001import { CommandInteraction } from "discord.js";
2import { SlashCommandBuilder } from "@discordjs/builders";
3import { WrappedCheck } from "jshaiku";
4
5const command = new SlashCommandBuilder()
6 .setName("help")
7 .setDescription("Shows help for commands")
8
9const callback = (interaction: CommandInteraction) => {
pineafan0a2cd592022-07-25 17:38:02 +010010 interaction.reply("hel p"); // TODO: FINISH THIS FOR RELEASE
pineafan4f164f32022-02-26 22:07:12 +000011}
12
13const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
14 return true;
15}
16
17export { command };
18export { callback };
19export { check };