Interface FormNodeList

interface FormNodeList {
    designComponent: "List";
    icon: any;
    id: string;
    options: {
        readonly: boolean;
    } & {
        format?: string;
    };
    scope: string;
    title?: string;
    type: "Control";
}

Hierarchy (view full)

Properties

designComponent: "List"
icon: any
id: string
options: {
    readonly: boolean;
} & {
    format?: string;
}

Type declaration

  • readonly: boolean

Type declaration

  • Optional format?: string
scope: string
title?: string
type: "Control"