mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-07 16:30:12 +08:00
fix typo on D3 layout "separation" method
"separation" is the method name and was names "seperation" into the definition
This commit is contained in:
Vendored
+4
-4
@@ -1162,7 +1162,7 @@ declare module D3 {
|
||||
/**
|
||||
* If separation is specified, uses the specified function to compute separation between neighboring nodes. If separation is not specified, returns the current separation function
|
||||
*/
|
||||
seperation: {
|
||||
separation: {
|
||||
/**
|
||||
* Gets the current separation function
|
||||
*/
|
||||
@@ -1170,7 +1170,7 @@ declare module D3 {
|
||||
/**
|
||||
* Sets the specified function to compute separation between neighboring nodes
|
||||
*/
|
||||
(seperation: (a: GraphNode, b: GraphNode) => number): TreeLayout;
|
||||
(separation: (a: GraphNode, b: GraphNode) => number): TreeLayout;
|
||||
};
|
||||
/**
|
||||
* Gets or sets the available layout size
|
||||
@@ -1382,9 +1382,9 @@ declare module D3 {
|
||||
}
|
||||
nodes(root: GraphNode): GraphNode[];
|
||||
links(nodes: GraphNode[]): GraphLink[];
|
||||
seperation: {
|
||||
separation: {
|
||||
(): (a: GraphNode, b: GraphNode) => number;
|
||||
(seperation: (a: GraphNode, b: GraphNode) => number): ClusterLayout;
|
||||
(separation: (a: GraphNode, b: GraphNode) => number): ClusterLayout;
|
||||
}
|
||||
size: {
|
||||
(): number[];
|
||||
|
||||
Reference in New Issue
Block a user