AnimationEvent.d.ts 546 B

123456789101112
  1. import type { EventService } from '@antv/g-lite';
  2. import { FederatedEvent } from '@antv/g-lite';
  3. import type { Animation } from './Animation';
  4. /**
  5. * @see https://developer.mozilla.org/en-US/docs/Web/API/AnimationPlaybackEvent
  6. */
  7. export 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. }
  12. //# sourceMappingURL=AnimationEvent.d.ts.map