]> source.dussan.org Git - svg.js.git/commitdiff
Updated ease type in svg.js.d.ts 971/head
authormanospasj <manospasj@gmail.com>
Thu, 28 Feb 2019 16:47:32 +0000 (16:47 +0000)
committerGitHub <noreply@github.com>
Thu, 28 Feb 2019 16:47:32 +0000 (16:47 +0000)
Updated animate method to accept a custom ease function as per the docs (https://svgjs.com/docs/2.7/animating/#easing)

svg.js.d.ts

index dec13f67ff3365371b84fcc4d32b9dd588126cb3..47d858ec58e2eda6d0d5cb70222c2bcfb617d5ac 100644 (file)
@@ -347,8 +347,8 @@ declare namespace svgjs {
         }\r
     }\r
     interface Element {\r
-        animate(duration?: number, ease?: string, delay?: number): Animation;\r
-        animate(info: { ease?: string; duration?: number; delay?: number }): Animation;\r
+        animate(duration?: number, ease?: string | ((pos: number) => number), delay?: number): Animation;\r
+        animate(info: { ease?: string | ((pos: number) => number); duration?: number; delay?: number }): Animation;\r
         stop(jumpToEnd:boolean,clearQueue:boolean): Animation;\r
     }\r
     // TODO finishs FX\r
@@ -1034,4 +1034,4 @@ declare namespace svgjs {
 \r
         // TODO style, etc, bbox...\r
     }\r
-}
\ No newline at end of file
+}\r