blob: fc5474f496b0cca57518773da5f435d4b5d9f0e1 [file] [log] [blame]
import { CommandInteraction } from "discord.js";
import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
import { WrappedCheck } from "jshaiku";
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
.setDescription("View the server as a specific member")
const callback = (interaction: CommandInteraction) => {
interaction.reply("Command incomplete [mod/viewas]");
}
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
return true;
}
export { command };
export { callback };
export { check };