interface Edge {
    source: string;
    target: string;
    conditional?: boolean;
    data?: string;
}

Properties

source: string
target: string
conditional?: boolean
data?: string