interface GraphEdge {
    source: string;
    target: string;
    type?: string;
}

Properties

Properties

source: string
target: string
type?: string