blob: 587ecf4b763ca310a9d36d245e11ef64e6d3edc0 [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setName("delete")
.setDescription("Deletes a ticket")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [ticket/delete]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };