Type alias StrictEdge

StrictEdge: StrictElement & {
    id: string;
    junctionPoints?: Point[];
    sources: string[];
    targets: string[];
    sections: StrictEdgeSection[];
    container: string;
    svg?: EdgeRenderingOptions;
}

Type declaration