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

Hierarchy (View Summary)

Methods