From da6dfc85a7be239dceaa66d5259d4406ee88f9ef Mon Sep 17 00:00:00 2001 From: Brandon Luong Date: Tue, 30 Sep 2014 14:22:23 -0700 Subject: [PATCH] KeyValue -> MapKeyValue --- d3/d3.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d3/d3.d.ts b/d3/d3.d.ts index 6a38ecc2b1..15df194644 100644 --- a/d3/d3.d.ts +++ b/d3/d3.d.ts @@ -853,7 +853,7 @@ declare module D3 { remove(key: string): boolean; keys(): string[]; values(): T[]; - entries(): KeyValue[]; + entries(): MapKeyValue[]; forEach(func: (key: string, value: T) => void ): void; empty(): boolean; size(): number;