(
from: number,
to: number,
duration: number,
easing: EasingFunction,
onUpdate: (value: number) => void,
onComplete?: () => void,
)
| 4 | |
| 5 | export interface AnimationController { |
| 6 | animate( |
| 7 | from: number, |
| 8 | to: number, |
| 9 | duration: number, |
no outgoing calls
no test coverage detected