From 1cbedf37b60eaee3e0681d1f4a4171a7a624a930 Mon Sep 17 00:00:00 2001 From: YUDIEL CURBELO Date: Sat, 20 Feb 2016 01:24:40 -0500 Subject: [PATCH] Missing rotate Adds rotation by given angle around given point to the list of transformations of the element. --- raphael/raphael.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/raphael/raphael.d.ts b/raphael/raphael.d.ts index 80419302ad..9a51106b93 100644 --- a/raphael/raphael.d.ts +++ b/raphael/raphael.d.ts @@ -64,6 +64,7 @@ interface RaphaelElement { remove(): void; removeData(key?: string): RaphaelElement; resume(anim?: RaphaelAnimation): RaphaelElement; + rotate(deg: number, cx?: number, cy?: number): RaphaelElement; setTime(anim: RaphaelAnimation): void; setTime(anim: RaphaelAnimation, value: number): RaphaelElement; show(): RaphaelElement;