We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5c470 commit f3d6abbCopy full SHA for f3d6abb
core/src/utils/animation/animation-interface.ts
@@ -29,9 +29,9 @@ export interface Animation {
29
*/
30
destroy(clearStyleSheets?: boolean): void;
31
32
- progressStart(forceLinearEasing: boolean, step?: number): void;
33
- progressStep(step: number): void;
34
- progressEnd(playTo: 0 | 1 | undefined, step: number, dur?: number): void;
+ progressStart(forceLinearEasing?: boolean, step?: number): Animation;
+ progressStep(step: number): Animation;
+ progressEnd(playTo: 0 | 1 | undefined, step: number, dur?: number): Animation;
35
36
from(property: string, value: any): Animation;
37
to(property: string, value: any): Animation;
0 commit comments