Skip to content

Commit

Permalink
Manual fixes to cycles for xplat
Browse files Browse the repository at this point in the history
Summary:
Add annotations to xplat to break cycles

Changelog:
[internal]

Reviewed By: SamChou19815

Differential Revision: D41111962

fbshipit-source-id: f268871cbaae5bc51d6f576d9c0697e637dea5d1
  • Loading branch information
mvitousek authored and facebook-github-bot committed Nov 8, 2022
1 parent f4098a5 commit 1bf610d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Libraries/Interaction/PanResponder.flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ type ActiveCallback = (

type PassiveCallback = (event: PressEvent, gestureState: GestureState) => mixed;

type PanHandlers = {|
export type PanHandlers = {|
onMoveShouldSetResponder: (event: PressEvent) => boolean,
onMoveShouldSetResponderCapture: (event: PressEvent) => boolean,
onResponderEnd: (event: PressEvent) => void,
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Interaction/PanResponder.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ type ActiveCallback = (

type PassiveCallback = (event: PressEvent, gestureState: GestureState) => mixed;

type PanHandlers = {|
export type PanHandlers = {|
onMoveShouldSetResponder: (event: PressEvent) => boolean,
onMoveShouldSetResponderCapture: (event: PressEvent) => boolean,
onResponderEnd: (event: PressEvent) => void,
Expand Down

0 comments on commit 1bf610d

Please sign in to comment.