Added missing functions to d3 EnterSelection interface

This commit is contained in:
Greg Smith
2014-03-09 03:25:58 -05:00
parent 05bf443865
commit 5be35e694e

2
d3/d3.d.ts vendored
View File

@@ -812,6 +812,8 @@ declare module D3 {
select: (selector: string) => Selection;
empty: () => boolean;
node: () => Element;
call: (callback: (selection: EnterSelection) => void) => EnterSelection;
size: () => number;
}
export interface UpdateSelection extends Selection {