UNPKG

505 BTypeScriptView Raw
1import { FederatedEvent } from './FederatedEvent';
2import type { EventService } from '../services';
3import type { Animation } from './Animation';
4/**
5 * @see https://developer.mozilla.org/en-US/docs/Web/API/AnimationPlaybackEvent
6 */
7export declare class AnimationEvent extends FederatedEvent implements AnimationPlaybackEvent {
8 currentTime: number | null;
9 timelineTime: number;
10 constructor(manager: EventService | null, target: Animation, currentTime: number | null, timelineTime: number);
11}