Type alias InputEdge

InputEdge: InputElement & {
    id: string;
    junctionPoints?: Point[];
    sources: string[];
    targets: string[];
    sections?: InputSection[];
    container?: string;
    svg?: EdgeRenderingOptions;
}

Type declaration