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 add84dd commit 2f5f898Copy full SHA for 2f5f898
packages/animations/src/players/animation_player.ts
@@ -75,12 +75,12 @@ export interface AnimationPlayer {
75
reset(): void;
76
/**
77
* Sets the position of the animation.
78
- * @param position A 0-based offset into the duration, in milliseconds.
+ * @param position A fractional value, representing the progress through the animation.
79
*/
80
setPosition(position: number): void;
81
82
* Reports the current position of the animation.
83
- * @returns A 0-based offset into the duration, in milliseconds.
+ * @returns A fractional value, representing the progress through the animation.
84
85
getPosition(): number;
86
0 commit comments