Interface OptionValueBoolean

Represents the value of an option. Subtype of OptionValue.

interface OptionValueBoolean {
    @type: "optionValueBoolean";
    value?: boolean;
}

Properties

Properties

@type: "optionValueBoolean"
value?: boolean

The value of the option.