fix(animation): track correctly when updating CSS Animation (#19813)

* fix bug

* update menu

* fix
This commit is contained in:
Liam DeBeasi
2019-10-31 12:50:54 -04:00
committed by GitHub
parent 96a5e600e5
commit 7bd4412889
3 changed files with 28 additions and 21 deletions

View File

@ -29,7 +29,7 @@ export interface Animation {
*/
destroy(): void;
progressStart(forceLinearEasing: boolean): void;
progressStart(forceLinearEasing: boolean, step?: number): void;
progressStep(step: number): void;
progressEnd(playTo: 0 | 1 | undefined, step: number, dur?: number): void;