Removing comment disallowing for filter to be used with a string

This commit is contained in:
Brandon Luong
2015-02-18 00:54:44 -08:00
parent 9f2d187d4b
commit 0584949b84
Vendored
+2 -2
View File
@@ -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;