Type alias InputNode

InputNode: InputShape & {
    id: string;
    children?: InputNode[];
    ports?: InputPort[];
    edges?: InputEdge[];
    svg?: NodeRenderingOptions;
}

Type declaration