From 5524c9f258248041902040e19d9d8cd26c3fe143 Mon Sep 17 00:00:00 2001 From: Jonas Date: Fri, 23 Aug 2013 10:25:06 +0200 Subject: [PATCH] toString on Color returns a string --- 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 2fe18dad8..6848ba4dd 100644 --- a/d3/d3.d.ts +++ b/d3/d3.d.ts @@ -1388,7 +1388,7 @@ declare module D3 { /** * convert the color to a string. */ - toString(): Color; + toString(): string; } export interface RGBColor extends Color{