interface DataSourceConfigProps {
    value: undefined | DataSourceUnitConfig;
    onChange: (value: any) => void;
    configureEvents?: boolean;
    variablesSchema?: DataSchema;
}

Properties

value: undefined | DataSourceUnitConfig
onChange: (value: any) => void
configureEvents?: boolean
variablesSchema?: DataSchema