graphology-types
Advanced tools
Comparing version 0.21.0 to 0.21.1
@@ -466,3 +466,3 @@ /** | ||
node: unknown, | ||
updater?: (attributes: NodeAttributes) => NodeAttributes | ||
updater?: (attributes: NodeAttributes | {}) => NodeAttributes | ||
): string; | ||
@@ -482,3 +482,3 @@ addEdge( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -498,3 +498,3 @@ addDirectedEdge( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -514,3 +514,3 @@ addUndirectedEdge( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -532,3 +532,3 @@ addEdgeWithKey( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -550,3 +550,3 @@ addDirectedEdgeWithKey( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -568,3 +568,3 @@ addUndirectedEdgeWithKey( | ||
target: unknown, | ||
updater?: (attributes: EdgeAttributes) => EdgeAttributes | ||
updater?: (attributes: EdgeAttributes | {}) => EdgeAttributes | ||
): string; | ||
@@ -571,0 +571,0 @@ dropNode(node: unknown): void; |
{ | ||
"name": "graphology-types", | ||
"version": "0.21.0", | ||
"version": "0.21.1", | ||
"description": "TypeScript declaration for graphology.", | ||
@@ -5,0 +5,0 @@ "main": "index.d.ts", |
56983