UNPKG

html-to-react-events

Version:

Convert HTML event names to React event handler names.

23 lines (22 loc) 752 B
export declare type MouseEvent = 'click' | 'contextmenu' | 'dblclick' | 'drag' | 'dragend' | 'dragenter' | 'dragexit' | 'dragleave' | 'dragover' | 'dragstart' | 'drop' | 'mousedown' | 'mouseenter' | 'mouseleave' | 'mousemove' | 'mouseout' | 'mouseover' | 'mouseup'; declare const _default: { 'click': string; 'contextmenu': string; 'dblclick': string; 'drag': string; 'dragend': string; 'dragenter': string; 'dragexit': string; 'dragleave': string; 'dragover': string; 'dragstart': string; 'drop': string; 'mousedown': string; 'mouseenter': string; 'mouseleave': string; 'mousemove': string; 'mouseout': string; 'mouseover': string; 'mouseup': string; }; export default _default;