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

Properties

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