mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Merge pull request #2177 from Stilgar84/master
For d3.js "typing": Make optional the before argument of enter().insert('')
This commit is contained in:
Vendored
+1
-1
@@ -811,7 +811,7 @@ declare module D3 {
|
||||
|
||||
export interface EnterSelection {
|
||||
append: (name: string) => Selection;
|
||||
insert: (name: string, before: string) => Selection;
|
||||
insert: (name: string, before?: string) => Selection;
|
||||
select: (selector: string) => Selection;
|
||||
empty: () => boolean;
|
||||
node: () => Element;
|
||||
|
||||
Reference in New Issue
Block a user