版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AnimationEvent.d.ts 407 B

1234567891011121314151617
  1. import Event from '../Event';
  2. import IAnimationEventInit from './IAnimationEventInit';
  3. /**
  4. *
  5. */
  6. export default class AnimationEvent extends Event {
  7. animationName: string;
  8. elapsedTime: number;
  9. pseudoElement: string;
  10. /**
  11. * Constructor.
  12. *
  13. * @param type Event type.
  14. * @param [eventInit] Event init.
  15. */
  16. constructor(type: string, eventInit?: IAnimationEventInit);
  17. }