VariableOption🔗
Option to be selected in a variable.
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[];
}
Methods🔗
No methods.