版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

18 řádky
407 B

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