UNPKG

html-to-react-events

Version:

Convert HTML event names to React event handler names.

8 lines (6 loc) 236 B
export type AnimationEvent = 'animationstart' | 'animationend' | 'animationiteration'; export default { 'animationstart': 'onAnimationStart', 'animationend': 'onAnimationEnd', 'animationiteration': 'onAnimationIteration' }