+ tickFormat also directly accepts a string parameter

This commit is contained in:
Stefan Steinhart
2015-07-02 21:17:45 +02:00
parent d73cbcb405
commit aaf2dcd5d6

1
d3/d3.d.ts vendored
View File

@@ -2535,6 +2535,7 @@ declare module d3 {
tickFormat(): (t: any) => string;
tickFormat(format: (t: any) => string): Axis;
tickFormat(format:string): Axis;
}
export function brush(): Brush<any>;