Interface FormNodeControl

interface FormNodeControl {
    designComponent: string;
    icon: any;
    id: string;
    options: {
        readonly: boolean;
    };
    scope: string;
    title?: string;
    type: "Control";
}

Hierarchy (view full)

Properties

designComponent: string
icon: any
id: string
options: {
    readonly: boolean;
}

Type declaration

  • readonly: boolean
scope: string
title?: string
type: "Control"