Interface Animatable

    interface Animatable {
        animate(
            keyframes: PropertyIndexedKeyframes | Keyframe[],
            options?: number | KeyframeAnimationOptions,
        ): Animation;
        getAnimations(options?: GetAnimationsOptions): Animation[];
    }
    Hierarchy

    Methods