Skip to content

Commit 1bf610d

Browse files
mvitousekfacebook-github-bot
authored andcommitted
Manual fixes to cycles for xplat
Summary: Add annotations to xplat to break cycles Changelog: [internal] Reviewed By: SamChou19815 Differential Revision: D41111962 fbshipit-source-id: f268871cbaae5bc51d6f576d9c0697e637dea5d1
1 parent f4098a5 commit 1bf610d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Libraries/Interaction/PanResponder.flow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ type ActiveCallback = (
176176

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

179-
type PanHandlers = {|
179+
export type PanHandlers = {|
180180
onMoveShouldSetResponder: (event: PressEvent) => boolean,
181181
onMoveShouldSetResponderCapture: (event: PressEvent) => boolean,
182182
onResponderEnd: (event: PressEvent) => void,

Libraries/Interaction/PanResponder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ type ActiveCallback = (
191191

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

194-
type PanHandlers = {|
194+
export type PanHandlers = {|
195195
onMoveShouldSetResponder: (event: PressEvent) => boolean,
196196
onMoveShouldSetResponderCapture: (event: PressEvent) => boolean,
197197
onResponderEnd: (event: PressEvent) => void,

0 commit comments

Comments
 (0)