graphology-types
Advanced tools
Comparing version 0.19.3 to 0.19.4
@@ -588,3 +588,3 @@ /** | ||
callback: AdjacencyUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
adjacency(): IterableIterator<AdjacencyEntry<NodeAttributes, EdgeAttributes>>; | ||
@@ -594,3 +594,5 @@ | ||
forEachNode(callback: NodeIterationCallback<NodeAttributes>): void; | ||
forEachNodeUntil(callback: NodeUntilIterationCallback<NodeAttributes>): void; | ||
forEachNodeUntil( | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): boolean; | ||
nodeEntries(): IterableIterator<NodeEntry<NodeAttributes>>; | ||
@@ -705,7 +707,7 @@ | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachEdgeUntil( | ||
@@ -715,10 +717,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachUndirectedEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachUndirectedEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachUndirectedEdgeUntil( | ||
@@ -728,10 +730,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachDirectedEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachDirectedEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachDirectedEdgeUntil( | ||
@@ -741,10 +743,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInEdgeUntil( | ||
@@ -754,10 +756,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutEdgeUntil( | ||
@@ -767,10 +769,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInboundEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInboundEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInboundEdgeUntil( | ||
@@ -780,10 +782,10 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutboundEdgeUntil( | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutboundEdgeUntil( | ||
node: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutboundEdgeUntil( | ||
@@ -793,3 +795,3 @@ source: NodeKey, | ||
callback: EdgeUntilIterationCallback<NodeAttributes, EdgeAttributes> | ||
): void; | ||
): boolean; | ||
edgeEntries(): IterableIterator<EdgeEntry<NodeAttributes, EdgeAttributes>>; | ||
@@ -898,27 +900,27 @@ edgeEntries( | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachUndirectedNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachDirectedNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachInboundNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
forEachOutboundNeighborUntil( | ||
node: NodeKey, | ||
callback: NodeUntilIterationCallback<NodeAttributes> | ||
): void; | ||
): boolean; | ||
neighborEntries(node: NodeKey): IterableIterator<NodeEntry<NodeAttributes>>; | ||
@@ -925,0 +927,0 @@ undirectedNeighborEntries( |
{ | ||
"name": "graphology-types", | ||
"version": "0.19.3", | ||
"version": "0.19.4", | ||
"description": "TypeScript declaration for graphology.", | ||
@@ -5,0 +5,0 @@ "main": "index.d.ts", |
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
33004
974