AnimationEvent
Events providing information related to animations.
interface AnimationEvent extends Event {
readonly animationName: string;
readonly elapsedTime: number;
readonly pseudoElement: string;
}var AnimationEvent: {
prototype: AnimationEvent;
new (type: string, animationEventInitDict?: AnimationEventInit): AnimationEvent;
};