Member Junction
    Preparing search index...

    A connection (edge) between two nodes

    interface FlowConnection {
        Animated?: boolean;
        Color?: string;
        Condition?: string;
        Data?: Record<string, unknown>;
        ID: string;
        Label?: string;
        LabelDetail?: string;
        LabelIcon?: string;
        LabelIconColor?: string;
        Priority?: number;
        Selected?: boolean;
        SourceNodeID: string;
        SourcePortID: string;
        Style?: FlowConnectionStyle;
        TargetNodeID: string;
        TargetPortID: string;
    }
    Index

    Properties

    Animated?: boolean
    Color?: string
    Condition?: string
    Data?: Record<string, unknown>

    Opaque data payload — consumers store domain-specific data here

    ID: string
    Label?: string
    LabelDetail?: string
    LabelIcon?: string

    Font Awesome icon class shown before the label text (e.g., 'fa-check')

    LabelIconColor?: string

    Color for the label icon

    Priority?: number
    Selected?: boolean
    SourceNodeID: string
    SourcePortID: string
    TargetNodeID: string
    TargetPortID: string