Fixes for TS0.9.5

This commit is contained in:
Neil Stalker
2013-12-06 22:36:06 +00:00
parent a1bada0ac6
commit d2c9aac1de
6 changed files with 68 additions and 52 deletions
Vendored
+2 -2
View File
@@ -200,7 +200,7 @@ declare module D3 {
*
* @param map Array of objects to get the key values from
*/
keys(map: any[]): any[];
keys(map: any): string[];
/**
* List the values of an associative array.
*
@@ -1032,7 +1032,7 @@ declare module D3 {
}
export interface StackLayout {
(layers: any[], index?: number): any[];
<T>(layers: T[], index?: number): T[];
values(accessor?: (d: any) => any): StackLayout;
offset(offset: string): StackLayout;
}