graphology-metrics
Advanced tools
Comparing version 1.14.1 to 1.14.2
@@ -6,8 +6,8 @@ import Graph from 'graphology-types'; | ||
type BetweennessCentralityOptions = { | ||
attributes: { | ||
centrality: string, | ||
weight: string | ||
attributes?: { | ||
centrality?: string, | ||
weight?: string | ||
}, | ||
normalized: boolean, | ||
weighted: boolean | ||
normalized?: boolean, | ||
weighted?: boolean | ||
}; | ||
@@ -14,0 +14,0 @@ |
import Graph from 'graphology-types'; | ||
type DegreeCentralityOptions = { | ||
attributes: { | ||
centrality: string | ||
attributes?: { | ||
centrality?: string | ||
} | ||
@@ -7,0 +7,0 @@ }; |
@@ -6,8 +6,8 @@ import Graph from 'graphology-types'; | ||
type ModularityOptions = { | ||
attributes: { | ||
community: string, | ||
weight: string | ||
attributes?: { | ||
community?: string, | ||
weight?: string | ||
}, | ||
communities: CommunityMapping, | ||
weighted: boolean | ||
communities?: CommunityMapping, | ||
weighted?: boolean | ||
}; | ||
@@ -14,0 +14,0 @@ |
{ | ||
"name": "graphology-metrics", | ||
"version": "1.14.1", | ||
"version": "1.14.2", | ||
"description": "Miscellaneous graph metrics for graphology.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
import Graph, {NodeKey} from 'graphology-types'; | ||
type WeightedDegreeOptions = { | ||
attributes: { | ||
weight: string, | ||
weightedDegree: string | ||
attributes?: { | ||
weight?: string, | ||
weightedDegree?: string | ||
} | ||
@@ -8,0 +8,0 @@ }; |
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
72497