SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/es/algorithm/dijkstra.d.ts
2026-05-15 10:22:44 +08:00

10 lines
278 B
TypeScript

export declare namespace Dijkstra {
type AdjacencyList = {
[key: string]: string[];
};
type Weight = (u: string, v: string) => number;
function run(adjacencyList: AdjacencyList, source: string, weight?: Weight): {
[key: string]: string;
};
}