]> source.dussan.org Git - svg.js.git/commitdiff
Bare -> Dom
authorKeith Bentley <Keith.Bentley@bentley.com>
Sun, 10 Feb 2019 14:55:15 +0000 (09:55 -0500)
committerKeith Bentley <Keith.Bentley@bentley.com>
Sun, 10 Feb 2019 14:55:15 +0000 (09:55 -0500)
svg.js.d.ts

index 4c2c4651ef8750b2e5b93e07ab242f0dec30afea..34a69610ebe44326b88316c5323444863242c587 100644 (file)
@@ -72,9 +72,9 @@ declare namespace svgjs {
 \r
     // bare.js\r
     export interface Dom {\r
-        new(element: string, inherit?: any): Bare;\r
+        new(element: string, inherit?: any): Dom;\r
         words(text: string): this;\r
-        element(element: string, inherit?: Object): Bare;\r
+        element(element: string, inherit?: Object): Dom;\r
         addTo(parent: Dom): this;\r
         putIn(parent: Dom): Dom;\r
         children(): Element[];\r
@@ -89,7 +89,7 @@ declare namespace svgjs {
         removeElement(element: Element): this;\r
         clear(): this;\r
     }\r
-    interface Library { Bare: Bare; }\r
+    interface Library { Dom: Dom; }\r
 \r
     // boxes.js\r
     interface Box {\r