aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Dalton <aaron@daltons.ca>2019-02-16 10:03:38 -0700
committerAaron Dalton <aaron@daltons.ca>2019-02-16 10:03:38 -0700
commit9698762dc43e5138393b3b487f675f35561ed0fa (patch)
tree02ab9c301db4009f48f1508ac77386adb427c2fa
parentac4e41609d44f186944770361cbd228bdd6bf840 (diff)
downloadsvg.js-9698762dc43e5138393b3b487f675f35561ed0fa.tar.gz
svg.js-9698762dc43e5138393b3b487f675f35561ed0fa.zip
Added missing 'clone(parent)' overload to .d.ts file
-rw-r--r--svg.js.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index 05206b3..8ba487d 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -248,6 +248,7 @@ declare namespace svgjs {
size(width?: NumberAlias, height?: NumberAlias): this;
clone(): Element;
+ clone(parent: Parent): Element;
remove(): this;
replace(element: Element): Element;