blob: 32624cc165ad1d4e93c4a01d1b34a6577a04b9e5 [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001import { CommandInteraction } from "discord.js";
2import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
3import { WrappedCheck } from "jshaiku";
4
5const command = (builder: SlashCommandSubcommandBuilder) =>
6 builder
7 .setName("slowmode")
8 .setDescription("Manages slowmode in a channel")
9
10const callback = (interaction: CommandInteraction) => {
11 interaction.reply("Command incomplete [mod/slowmode]");
12}
13
14const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
15 return true;
16}
17
18export { command };
19export { callback };
20export { check };