interface EdgeDataDefinition {
    id?: string;
    position?: Position;
    source: string;
    target: string;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

  • [key: string]: any

Properties

id?: string

elided id => autogenerated id

position?: Position
source: string

the source node id (edge comes from this node)

target: string

the target node id (edge goes to this node)