Type alias StrictNode

StrictNode: StrictShape & {
    id: string;
    children?: StrictNode[];
    ports?: StrictPort[];
    edges?: StrictEdge[];
    svg?: NodeRenderingOptions;
}

Type declaration