The Animation that have get instanted.

interface AnimationInstance<T> {
    animation: Animation<T>;
    during: number;
    mode: "positive" | "reverse";
    params?: Record<string, any>;
    startAt: number;
}

Type Parameters

Properties

animation: Animation<T>

The object Animation.

during: number

The duration of this animation.

mode: "positive" | "reverse"

The playing mode of this animation

params?: Record<string, any>

The other parameters.

startAt: number

The animation's started time.