Interface Animatable

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

Hierarchy (View Summary)

Methods