blob: b326c90bb77f011499a52a06133a93d45e573a5f [file] [log] [blame]
pineafan2c33b9f2022-02-25 20:35:23 +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) => {
10 interaction.reply("hel p");
11}
12
13const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
14 return true;
15}
16
17export { command };
18export { callback };
19export { check };