Interface LabelElement

A label element.

interface LabelElement {
    i18n?: string;
    options?: {
        [key: string]: any;
    };
    rule?: Rule;
    text: string;
    type: "Label";
}

Hierarchy (view full)

Properties

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

Any additional options.

Type declaration

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

An optional rule.

text: string

The text of label.

type: "Label"

The type of this UI schema element.

Generated using TypeDoc