Module Types

type insets = Js.t({. left : int, right : int, top : int, bottom : int, });
type touchResponderHandlers = {
onMoveShouldSetResponder : option((RNEvent.NativeEvent.t => bool)),
onMoveShouldSetResponderCapture : option((RNEvent.NativeEvent.t => bool)),
onResponderGrant : option((RNEvent.NativeEvent.t => unit)),
onResponderMove : option((RNEvent.NativeEvent.t => unit)),
onResponderReject : option((RNEvent.NativeEvent.t => unit)),
onResponderRelease : option((RNEvent.NativeEvent.t => unit)),
onResponderTerminate : option((RNEvent.NativeEvent.t => unit)),
onResponderTerminationRequest : option((RNEvent.NativeEvent.t => unit)),
onStartShouldSetResponder : option((RNEvent.NativeEvent.t => bool)),
onStartShouldSetResponderCapture : option((RNEvent.NativeEvent.t => bool)),
};