UNPKG

react-native-gesture-handler

Version:

Declarative API exposing native platform touch and gesture system to React Native

10 lines (9 loc) 399 B
"use strict"; import { ComposedGestureName } from '../../types'; import { useComposedGesture } from './useComposedGesture'; export function useExclusiveGestures(...gestures) { const composedGesture = useComposedGesture(ComposedGestureName.Exclusive, ...gestures); composedGesture.type = ComposedGestureName.Exclusive; return composedGesture; } //# sourceMappingURL=useExclusiveGestures.js.map