Interface FormNodeNumber

interface FormNodeNumber {
    designComponent: "Number";
    icon: any;
    id: string;
    options: {
        readonly: boolean;
    } & {
        slider: boolean;
    };
    scope: string;
    title?: string;
    type: "Control";
}

Hierarchy (view full)

Properties

designComponent: "Number"
icon: any
id: string
options: {
    readonly: boolean;
} & {
    slider: boolean;
}

Type declaration

  • readonly: boolean

Type declaration

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