aboutsummaryrefslogtreecommitdiffstats
path: root/svg.js.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r--svg.js.d.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index 4c2c465..34a6961 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -72,9 +72,9 @@ declare namespace svgjs {
// bare.js
export interface Dom {
- new(element: string, inherit?: any): Bare;
+ new(element: string, inherit?: any): Dom;
words(text: string): this;
- element(element: string, inherit?: Object): Bare;
+ element(element: string, inherit?: Object): Dom;
addTo(parent: Dom): this;
putIn(parent: Dom): Dom;
children(): Element[];
@@ -89,7 +89,7 @@ declare namespace svgjs {
removeElement(element: Element): this;
clear(): this;
}
- interface Library { Bare: Bare; }
+ interface Library { Dom: Dom; }
// boxes.js
interface Box {