7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
|
|
import IEventInit from '../IEventInit.js';
|
||
|
|
export default interface IAnimationEventInit extends IEventInit {
|
||
|
|
animationName?: string;
|
||
|
|
elapsedTime?: number;
|
||
|
|
pseudoElement?: string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IAnimationEventInit.d.ts.map
|