diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-09-03 11:33:51 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-09-03 11:33:51 +0200 |
commit | 46ee87a1c2fc373c629235010c05bd8d40b2cb9e (patch) | |
tree | f33a887ef31e260fd01da43e7a6fff3627677deb /svg.js.d.ts | |
parent | 742394edf6777292d1db55baa6cfb33f686e0f21 (diff) | |
download | svg.js-46ee87a1c2fc373c629235010c05bd8d40b2cb9e.tar.gz svg.js-46ee87a1c2fc373c629235010c05bd8d40b2cb9e.zip |
added amove methods to runner (fixes #1131)
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r-- | svg.js.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index 520ae98..37ee526 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -1019,12 +1019,15 @@ declare module '@svgdotjs/svg.js' { ): this x(x: number): this y(y: number): this + ax(x: number): this + ay(y: number): this dx(dx: number): this dy(dy: number): this cx(x: number): this cy(y: number): this dmove(dx: number, dy: number): this move(x: number, y: number): this + amove(x: number, y: number): this center(x: number, y: number): this size(width: number, height: number): this width(width: number): this |