Stone.js API
    Preparing search index...

    Command options.

    Represents the configuration options for a CLI command.

    interface CommandOptions {
        alias?: string | string[];
        args?: string | string[];
        desc?: string;
        name: string;
        options?: Partial<CommandBuilder<{}>>;
    }
    Index
    alias?: string | string[]

    Alias or aliases for the command, used for identification or access. Can be a single alias or an array of aliases.

    args?: string | string[]

    The arguments required or accepted by the command. Can be a single argument or an array of arguments.

    desc?: string

    The description of the command.

    name: string

    The unique name of the command.

    options?: Partial<CommandBuilder<{}>>

    A map of additional options for the command, where the key is the option name and the value is its description.