Merge pull request #1816 from smrq/d3-enterselection

Added missing functions to d3 EnterSelection interface
This commit is contained in:
Masahiro Wakame
2014-03-15 17:45:10 +09:00
Vendored
+2
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 {