]> source.dussan.org Git - svg.js.git/commitdiff
Add optional string type to Runner.ease 1111/head
authorAndrew Rodgers <acedrew@gmail.com>
Wed, 20 May 2020 03:05:52 +0000 (23:05 -0400)
committerGitHub <noreply@github.com>
Wed, 20 May 2020 03:05:52 +0000 (23:05 -0400)
The ease method on the runner takes the same constructor strings as the Ease class, so you can do things like element.animate(1000).ease('-').rotate(360).loop()
Currently typescript throws an error saying that ease only accepts a Function as an argument.

svg.js.d.ts

index 2e227a4a918f34c321bc175be50c834260bc61bb..0dddfdc7f9265a5d695812b835948fb718d55967 100644 (file)
@@ -851,7 +851,7 @@ declare module "@svgdotjs/svg.js" {
         reset(): this\r
         finish(): this\r
         reverse(r?: boolean): this\r
-        ease(fn: Function): this\r
+        ease(fn: Function | string): this\r
         active(): boolean\r
         active(a: boolean): this\r
         addTransform(m: Matrix): this\r