diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-05-20 13:39:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 13:39:53 +1000 |
commit | 18e4db2688f6b11eb5c57b6ab6ad0bb1ad6abb42 (patch) | |
tree | 2179412b81632dc2799049e9df524653fd83d7ba | |
parent | 0890c4d55fd39356347a5e7a2bb37c9436d2555c (diff) | |
parent | 850172f0da05053479d150c91165c33d84b9c43d (diff) | |
download | svg.js-18e4db2688f6b11eb5c57b6ab6ad0bb1ad6abb42.tar.gz svg.js-18e4db2688f6b11eb5c57b6ab6ad0bb1ad6abb42.zip |
Merge pull request #1111 from acedrew/ts-runner-ease
Add optional string type to Runner.ease
-rw-r--r-- | svg.js.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index 2e227a4..0dddfdc 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -851,7 +851,7 @@ declare module "@svgdotjs/svg.js" { reset(): this
finish(): this
reverse(r?: boolean): this
- ease(fn: Function): this
+ ease(fn: Function | string): this
active(): boolean
active(a: boolean): this
addTransform(m: Matrix): this
|