Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}
;

§Extends

§Properties

§
readonly animationName: string
[src]
§
readonly elapsedTime: number
[src]
§
readonly pseudoElement: string
[src]