Type Alias EdgeSpecBeta

EdgeSpec: {
    from: string;
    label: string;
    to: string;
}

Type representing the specification of an edge in a graph.

Type declaration

  • Betafrom: string

    The identifier of the starting node.

  • Betalabel: string

    The label for the edge.

  • Betato: string

    The identifier of the ending node.