happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
18 lines • 493 B
TypeScript
import Event from '../Event.cjs';
import IAnimationEventInit from './IAnimationEventInit.cjs';
/**
*
*/
export default class AnimationEvent extends Event {
readonly animationName: string;
readonly elapsedTime: number;
readonly pseudoElement: string;
/**
* Constructor.
*
* @param type Event type.
* @param [eventInit] Event init.
*/
constructor(type: string, eventInit?: IAnimationEventInit | null);
}
//# sourceMappingURL=AnimationEvent.d.ts.map