@dexare/slash-create
Version:
A Dexare module that uses slash-create to make slash commands
12 lines (11 loc) • 354 B
TypeScript
import { SlashCommandOptions } from 'slash-create';
export interface DexareSlashCommandOptions extends Omit<SlashCommandOptions, 'name'> {
/** The name of the command. */
name?: string;
}
export interface SyncCommandOptions {
deleteCommands?: boolean;
syncGuilds?: boolean;
skipGuildErrors?: boolean;
syncPermissions?: boolean;
}