aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2021-06-18 16:59:04 +1000
committerGitHub <noreply@github.com>2021-06-18 16:59:04 +1000
commitb6d3036a90ceb33fb85da935eb79131b6e1840e6 (patch)
treeda663a0a198fc9a62c59afaa546feb882276c0a6
parent14a828fe245bbda07598cad6827d41df40742dd2 (diff)
downloadsvg.js-b6d3036a90ceb33fb85da935eb79131b6e1840e6.tar.gz
svg.js-b6d3036a90ceb33fb85da935eb79131b6e1840e6.zip
Update svg.js.d.ts
zoom should return `this`
-rw-r--r--svg.js.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index 7e0e5f2..17f262e 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -1104,7 +1104,7 @@ declare module "@svgdotjs/svg.js" {
viewbox(x: number, y: number, width: number, height: number): this;
textPath(text: string | Text, path: string | Path): TextPath
symbol(): Symbol
- zoom(level: NumberAlias, point?: Point): any;
+ zoom(level: NumberAlias, point?: Point): this;
}
class Defs extends Container {