@dagrejs/dagre
Version:
Graph layout for JavaScript
6 lines • 320 B
TypeScript
import { Graph } from "@dagrejs/graphlib";
import type { EdgeLabel, GraphLabel, NodeLabel } from "./types";
export { run, undo };
declare function run(graph: Graph<GraphLabel, NodeLabel, EdgeLabel>): void;
declare function undo(graph: Graph<GraphLabel, NodeLabel, EdgeLabel>): void;
//# sourceMappingURL=acyclic.d.ts.map