@dexare/slash-create
Version:
A Dexare module that uses slash-create to make slash commands
14 lines (11 loc) • 344 B
text/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;
}