graph-data-structure
Advanced tools
Comparing version 1.12.0 to 1.12.1
@@ -18,3 +18,3 @@ declare type NodeId = string; | ||
adjacent: (node: string) => string[]; | ||
addEdge: (u: string, v: string, weight: number) => any; | ||
addEdge: (u: string, v: string, weight?: number | undefined) => any; | ||
removeEdge: (u: string, v: string) => any; | ||
@@ -21,0 +21,0 @@ setEdgeWeight: (u: string, v: string, weight: number) => any; |
{ | ||
"name": "graph-data-structure", | ||
"version": "1.12.0", | ||
"version": "1.12.1", | ||
"description": "A graph data structure with topological sort.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39267