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ů.
|
- import Event from '../Event';
- import IAnimationEventInit from './IAnimationEventInit';
- /**
- *
- */
- export default class AnimationEvent extends Event {
- animationName: string;
- elapsedTime: number;
- pseudoElement: string;
- /**
- * Constructor.
- *
- * @param type Event type.
- * @param [eventInit] Event init.
- */
- constructor(type: string, eventInit?: IAnimationEventInit);
- }
|