Interface UpdateOption

An option changed its value. Subtype of Update.

interface UpdateOption {
    @type: "updateOption";
    name: string;
    value: OptionValue;
}

Properties

Properties

@type: "updateOption"
name: string

The option name.

The new option value.