Interface IEdge

interface IEdge {
    from: NodeId;
    to: NodeId;
}

Properties

Properties

from: NodeId
to: NodeId