diff options
author | Adam Yakes <dev@adam.yakes.org> | 2021-11-10 14:12:05 -0600 |
---|---|---|
committer | Adam Yakes <dev@adam.yakes.org> | 2021-11-10 14:12:05 -0600 |
commit | 2cb725d68072318320c69bf2148b2189dda34e4a (patch) | |
tree | d7bc7d857fd681af9c65e06a934e4a6d52d57295 | |
parent | 23c043b0688478f2b49a32dfca72d905db075dcd (diff) | |
download | svg.js-2cb725d68072318320c69bf2148b2189dda34e4a.tar.gz svg.js-2cb725d68072318320c69bf2148b2189dda34e4a.zip |
Includes dmove method on Runner class
-rw-r--r-- | svg.js.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index 1d970b4..0560a62 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -881,6 +881,7 @@ declare module "@svgdotjs/svg.js" { dy(dy: number): this
cx(x: number): this
cy(y: number): this
+ dmove(dx: number, dy: number): this
move(x: number, y: number): this
center(x: number, y: number): this
size(width: number, height: number): this
|