summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--svg.js.d.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index 5b3fe6a..0870ab2 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -949,7 +949,11 @@ declare namespace svgjs {
to(value: number): Animation;
after(cb: () => void): Animation;
- rotate(degrees: number, cx: number, cy: number): Animation
+ rotate(degrees: number, cx?: number, cy?: number): Animation
+ skew(x: number, y: number): Animation
+ scale(x: number, y: number): Animation
+ translate(x: number, y: number): Animation
+
// TODO style, etc, bbox...
}
-} \ No newline at end of file
+}