Interface ComboBoxOptionsFactory

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

Implemented by

Methods

Methods

  • Parameters

    • args: {
          input: string;
          spec?: any;
          variablesSchema?: DataSchema;
          editableVariablesSchemaLocators?: string[];
      }

    Returns Promise<ComboBoxOption[]>