Fixed return type of d3.min Closure argument

This commit is contained in:
chaosmail
2013-07-26 17:53:58 +02:00
parent ecb8e18f7a
commit 3f71472004

2
d3/d3.d.ts vendored
View File

@@ -225,7 +225,7 @@ declare module D3 {
* @param arr Array to search
* @param map Accsessor function
*/
min: (arr: any[], map?: (v: any) => any) => number;
min: (arr: any[], map?: (v: any) => number) => number;
/**
* Find the maximum value in an array
*