seyfert
    Preparing search index...

    Type Alias CommandDeclareOptions

    CommandDeclareOptions:
        | DecoratorDeclareOptions
        | Omit<DecoratorDeclareOptions, "description"> & {
            type: ApplicationCommandType.User | ApplicationCommandType.Message;
        }
        | Omit<DecoratorDeclareOptions, "ignore" | "aliases" | "guildId"> & {
            handler: EntryPointCommandHandlerType;
            type: ApplicationCommandType.PrimaryEntryPoint;
        }