diff options
author | Keith Bentley <Keith.Bentley@bentley.com> | 2019-02-10 09:55:15 -0500 |
---|---|---|
committer | Keith Bentley <Keith.Bentley@bentley.com> | 2019-02-10 09:55:15 -0500 |
commit | b0dc360ac3f6fac5c77a2ab77554d44d650b5434 (patch) | |
tree | aa1f47f8993e319baabb14e76753da00dafcd132 /svg.js.d.ts | |
parent | bf1b599838337c557dd53f08968a1a8c47d59768 (diff) | |
download | svg.js-b0dc360ac3f6fac5c77a2ab77554d44d650b5434.tar.gz svg.js-b0dc360ac3f6fac5c77a2ab77554d44d650b5434.zip |
Bare -> Dom
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r-- | svg.js.d.ts | 6 |
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 {
|