Interface ComboBoxOptionsFactory
interface ComboBoxOptionsFactory { getOptions( args: { input: string; spec?: any; variablesSchema?: DataSchema; editableVariablesSchemaLocators?: string[]; }, ): Promise<ComboBoxOption[]>;} Methods
getOptions
getOptions( args: { input: string; spec?: any; variablesSchema?: DataSchema; editableVariablesSchemaLocators?: string[]; },): Promise<ComboBoxOption[]> Parameters
- args: {
input: string;
spec?: any;
variablesSchema?: DataSchema;
editableVariablesSchemaLocators?: string[];
}