]> source.dussan.org Git - svg.js.git/commitdiff
WIP: type definitions fixed for selector.js + added click method for set.js
authormpro7 <justinstarlight@gmail.com>
Tue, 20 Mar 2018 23:19:08 +0000 (00:19 +0100)
committermpro7 <justinstarlight@gmail.com>
Tue, 20 Mar 2018 23:19:08 +0000 (00:19 +0100)
svg.js.d.ts

index 4a08093477a069f80658a40b124f7fb11b098526..75ea5334fc09e049a34a529d4c791908f124c884 100644 (file)
@@ -754,10 +754,10 @@ declare namespace svgjs {
     // selector.js\r
     interface Library {\r
         get(id: string): Element;\r
-        select(query: string, parent: HTMLElement): Set;\r
+        select(query: string): Set;\r
     }\r
     interface Parent {\r
-        select(query: string): Set;\r
+        select(query: string, parent: HTMLElement): Set;\r
     }\r
 \r
     // set.js\r
@@ -775,6 +775,7 @@ declare namespace svgjs {
         last(): Element;\r
         valueOf(): Element[];\r
         bbox(): BBox;\r
+        click(cb: Function): Set;\r
     }\r
     interface Container { set(members?: Element[]): Set; }\r
     interface Library { Set: Set; }\r
@@ -1020,4 +1021,4 @@ declare namespace svgjs {
 \r
         // TODO style, etc, bbox...\r
     }\r
-}\r
+}
\ No newline at end of file