diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-03-08 01:09:14 +0100 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-03-08 01:09:14 +0100 |
commit | 40e103fa1acf93e0f59703da96a9c5200b14ca77 (patch) | |
tree | 6e0a9de84299063af011cbf77c0d1d3bf44dd929 /svg.js.d.ts | |
parent | 41b55427a71f85e444a8729a552b4db5aa9ac772 (diff) | |
download | svg.js-40e103fa1acf93e0f59703da96a9c5200b14ca77.tar.gz svg.js-40e103fa1acf93e0f59703da96a9c5200b14ca77.zip |
add rotate() as an animation method in typescript
Diffstat (limited to 'svg.js.d.ts')
-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 3128c8c..5b3fe6a 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -949,6 +949,7 @@ declare namespace svgjs { to(value: number): Animation;
after(cb: () => void): Animation;
+ rotate(degrees: number, cx: number, cy: number): Animation
// TODO style, etc, bbox...
}
}
\ No newline at end of file |