API

 

TranslatableOption

Represents an item contained in a select list.

interface TranslatableOption {
  value: string;
  text: string;
  selected: boolean;
}

value

The value to be submitted with the form, should this option be selected.

text

The text content of the item.

selected

Indicates that the option is selected.