VariableOption
Variable option specification
Definition
export interface VariableOption {
// Whether the option is selected or not
selected?: boolean;
// Text to be displayed for the option
text: string | string[];
// Value of the option
value: string | string[];
}