Package: effect
Module: Graph
Result of a shortest path computation containing the path and total distance.
Signature
export interface PathResult<E> {
readonly path: Array<NodeIndex>
readonly distance: number
readonly costs: Array<E>
}
Since v3.18.0