UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

5 lines 256 B
import { Graph } from "../../core/graph.js"; import type { NodeId } from "../../types/index.js"; import type { MSTResult } from "./kruskal.js"; export declare function primMST(graph: Graph, startNode?: NodeId): MSTResult; //# sourceMappingURL=prim.d.ts.map