diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-11-16 20:02:43 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 20:02:43 +1000 |
commit | b2a0e2bcff2b3a3f568dbd3ec5ce843e217ee6d8 (patch) | |
tree | ccad27a2fd85b22ff64fe765db48b12d877839f6 | |
parent | 9986cefa00f6261ab1ffca9911a4df74167fe217 (diff) | |
parent | 52150ea9f3273cccfae38e96d6f1428fd79be158 (diff) | |
download | svg.js-b2a0e2bcff2b3a3f568dbd3ec5ce843e217ee6d8.tar.gz svg.js-b2a0e2bcff2b3a3f568dbd3ec5ce843e217ee6d8.zip |
Merge pull request #1168 from melon3r/patch-1
Allow strings to be passed as transform origin on TS
-rw-r--r-- | svg.js.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index a34354e..496f749 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -481,7 +481,7 @@ declare module "@svgdotjs/svg.js" { scaleY?: number
shear?: number
theta?: number
- origin?: CoordinateXY
+ origin?: CoordinateXY | string
around?: CoordinateXY
ox?: number
originX?: number
|