Skip to content

Commit

Permalink
[flow] Tweak types for onTouchMove and onTouchMoveCapture
Browse files Browse the repository at this point in the history
Reviewed By: jbrown215

Differential Revision: D70396277

fbshipit-source-id: ef4358289ebed990b523146053db4a14c2cc742e
  • Loading branch information
SamChou19815 authored and facebook-github-bot committed Feb 28, 2025
1 parent d36e689 commit fd1f9b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/react-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,8 +835,8 @@ type ReactDOM$EventHandlers<-E> = $ReadOnly<{|
onTouchCancelCapture?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchEnd?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchEndCapture?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchMove?: ?(SyntheticEvent<E>) => mixed,
onTouchMoveCapture?: ?(SyntheticEvent<E>) => mixed,
onTouchMove?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchMoveCapture?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchStart?: ?(SyntheticTouchEvent<E>) => mixed,
onTouchStartCapture?: ?(SyntheticTouchEvent<E>) => mixed,

Expand Down

0 comments on commit fd1f9b0

Please sign in to comment.