Skip to content

Commit

Permalink
Fix type signature on NumericAxis.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
teamdandelion committed Jul 10, 2014
1 parent d08da87 commit 7feca08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/numericAxis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export module Axis {
* @param {string} orientation The orientation of the QuantitiveScale (top/bottom/left/right)
* @param {Formatter} [formatter] A function to format tick labels.
*/
constructor(scale: Abstract.QuantitiveScale, orientation: string, formatter?: Abstract.Formatter) {
constructor(scale: Abstract.QuantitiveScale, orientation: string, formatter?: any) {
super(scale, orientation, formatter);
}

Expand Down

0 comments on commit 7feca08

Please sign in to comment.