Interface UISchemaElement

Common base interface for any UI schema element.

interface UISchemaElement {
    options?: {
        [key: string]: any;
    };
    rule?: Rule;
    type: string;
}

Hierarchy (view full)

Properties

Properties

options?: {
    [key: string]: any;
}

Any additional options.

Type declaration

  • [key: string]: any
rule?: Rule

An optional rule.

type: string

The type of this UI schema element.

Generated using TypeDoc