Interface JJsonFormControlElement

interface JJsonFormControlElement {
    label: string;
    options?: {
        [key: string]: any;
    };
    scope: string;
    type: "Control";
}

Properties

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

Type declaration

  • [key: string]: any
scope: string
type: "Control"