Add missing optional index parameter

This commit is contained in:
Grégoire Castre
2015-03-18 14:23:56 +01:00
parent 0d331bf6cd
commit 3fe4c86588
Vendored
+1 -1
View File
@@ -1817,7 +1817,7 @@ declare module D3 {
(): number;
(value: number): Axis;
}
tickFormat(formatter: (value: any) => string): Axis;
tickFormat(formatter: (value: any, index?: number) => string): Axis;
nice(count?: number): Axis;
}