Interface DataFormArgs

interface DataFormArgs {
    schema: DataSchema;
    value: any;
    variablesSchema?: DataSchema;
}

Hierarchy (view full)

Properties

schema: DataSchema
value: any
variablesSchema?: DataSchema