feat(graph): implement FlowGraph class wrapping graphology DirectedGraph

Implements the core FlowGraph class with generic type parameters, DAG-enforced mutations,
cycle detection via graphology-dag, node/edge CRUD, traversal methods, and static factory stubs.
This commit is contained in:
2026-05-21 21:11:12 +00:00
parent e8736cb010
commit 1503ca07aa
4 changed files with 571 additions and 7 deletions

View File

@@ -1 +1,3 @@
export * from "./error/index.js";
export * from "./error/index.js";
export { FlowGraph, type FlowGraphOptions } from "./graph/index.js";