From 0584949b841856483fd4ff5327a3c3778fd8f233 Mon Sep 17 00:00:00 2001 From: Brandon Luong Date: Wed, 18 Feb 2015 00:54:44 -0800 Subject: [PATCH] Removing comment disallowing for filter to be used with a string --- d3/d3.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/d3/d3.d.ts b/d3/d3.d.ts index 15b1375f3..03450a002 100644 --- a/d3/d3.d.ts +++ b/d3/d3.d.ts @@ -778,7 +778,7 @@ declare module D3 { filter: { (filter: (data: any, index: number) => boolean, thisArg?: any): UpdateSelection; - //(filter: string): UpdateSelection; + (filter: string): UpdateSelection; }; call(callback: (selection: Selection, ...args: any[]) => void, ...args: any[]): Selection; @@ -1751,7 +1751,7 @@ declare module D3 { export interface Axis { (selection: Selection): void; (transition: Transition.Transition): void; - + scale: { (): any; (scale: any): Axis;