@servicenow/sdk - v4.4.1
    Preparing search index...
    interface BooleanSupportOption {
        array?: false;
        category: string;
        default?: boolean;
        deprecated?: string | true;
        description: string;
        name?: string;
        oppositeDescription?: string;
        type: "boolean";
    }

    Hierarchy (View Summary)

    Index

    Properties

    array?: false
    category: string

    Usually you can use CoreCategoryType

    default?: boolean
    deprecated?: string | true

    Indicate that the option is deprecated.

    Use a string to add an extra message to --help for the option, for example to suggest a replacement option.

    description: string

    Description to be displayed in --help. If omitted, the option won't be shown at all in --help.

    name?: string
    oppositeDescription?: string
    type: "boolean"

    The type of the option.

    When passing a type other than the ones listed below, the option is treated as taking any string as argument, and --option <${type}> will be displayed in --help.