interface Node {
    body?: string;
    id: number;
    label: string;
    type?: string;
    xform?: boolean;
}

Properties

body?: string
id: number
label: string
type?: string
xform?: boolean

Generated using TypeDoc