Merge pull request #1511 from slai/master

d3.entries accepts objects, not arrays (but returns an array).
This commit is contained in:
Masahiro Wakame
2014-01-07 01:13:04 -08:00
Vendored
+1 -1
View File
@@ -212,7 +212,7 @@ declare module D3 {
*
* @param map Array of objects to get the key-value pairs from
*/
entries(map: any[]): any[];
entries(map: any): any[];
/**
* merge multiple arrays into one array
*