Skip to content

Commit

Permalink
add missing transition events (ryansolid#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
titoBouzout authored May 15, 2023
1 parent ca86cc2 commit 7fc9242
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/dom-expressions/src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,10 @@ export namespace JSX {
onTouchEnd?: EventHandlerUnion<T, TouchEvent>;
onTouchMove?: EventHandlerUnion<T, TouchEvent>;
onTouchStart?: EventHandlerUnion<T, TouchEvent>;
onTransitionStart?: EventHandlerUnion<T, TransitionEvent>;
onTransitionEnd?: EventHandlerUnion<T, TransitionEvent>;
onTransitionRun?: EventHandlerUnion<T, TransitionEvent>;
onTransitionCancel?: EventHandlerUnion<T, TransitionEvent>;
onVolumeChange?: EventHandlerUnion<T, Event>;
onWaiting?: EventHandlerUnion<T, Event>;
onWheel?: EventHandlerUnion<T, WheelEvent>;
Expand Down Expand Up @@ -366,7 +369,10 @@ export namespace JSX {
ontouchend?: EventHandlerUnion<T, TouchEvent>;
ontouchmove?: EventHandlerUnion<T, TouchEvent>;
ontouchstart?: EventHandlerUnion<T, TouchEvent>;
ontransitionstart?: EventHandlerUnion<T, TransitionEvent>;
ontransitionend?: EventHandlerUnion<T, TransitionEvent>;
ontransitionrun?: EventHandlerUnion<T, TransitionEvent>;
ontransitioncancel?: EventHandlerUnion<T, TransitionEvent>;
onvolumechange?: EventHandlerUnion<T, Event>;
onwaiting?: EventHandlerUnion<T, Event>;
onwheel?: EventHandlerUnion<T, WheelEvent>;
Expand Down

0 comments on commit 7fc9242

Please sign in to comment.