permanent-waves/types.ts

14 lines
492 B
TypeScript
Raw Normal View History

2024-05-01 02:44:20 +00:00
export interface Command {
/** The name of this command. */
name: string;
/** What does this command do? */
description: string;
/** The type of command this is. */
type: ApplicationCommandTypes;
/** Whether or not this command is for the dev server only. */
devOnly?: boolean;
/** The options for this command */
options?: ApplicationCommandOption[];
/** This will be executed when the command is run. */
execute: (interaction: Interaction) => unknown;
}