interface EditorNewNode {
    addDefaultChildren?: boolean;
    constructorProps?: {
        [id: string]: any;
    };
    id?: string;
    label: string;
    parentID: string;
    parentIndex: number;
    props?: {
        [id: string]: any;
    };
    type: string;
}

Properties

addDefaultChildren?: boolean
constructorProps?: {
    [id: string]: any;
}
id?: string
label: string
parentID: string
parentIndex: number
props?: {
    [id: string]: any;
}
type: string