weasel API - v0.8.0
    Preparing search index...

    Interface LifecycleAnimation<TPose>

    interface LifecycleAnimation<TPose> {
        easing?: EasingFn;
        enterFrom?: (final: TPose) => TPose;
        exitTo?: (current: TPose) => TPose;
        geometry?: PoseProjection<TPose>;
        ms?: number;
    }

    Type Parameters

    • TPose
    Index

    Properties

    easing?: EasingFn
    enterFrom?: (final: TPose) => TPose

    Pose to animate the new object FROM at insert.

    exitTo?: (current: TPose) => TPose

    Pose to animate the existing object TO at remove.

    geometry?: PoseProjection<TPose>
    ms?: number