interface SearchFloydWarshallResult {
    distance(fromNode: NodeSingular | CollectionSelection, toNode: string | NodeSingular): number;
    path(fromNode: NodeSingular | CollectionSelection, toNode: string | NodeSingular): CollectionReturnValue;
}

Methods

Methods