Edge connecting flowchart nodes

interface FlowEdge {
    dashed?: boolean;
    from: string;
    label?: string;
    to: string;
}

Properties

Properties

dashed?: boolean

Render as dashed line

from: string

Source node ID

label?: string

Optional edge label

to: string

Target node ID