mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-06 18:20:09 +00:00
Fixed return type of d3.min Closure argument
This commit is contained in:
2
d3/d3.d.ts
vendored
2
d3/d3.d.ts
vendored
@@ -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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user