GT2/Ejectable/node_modules/react-native-gesture-handler/ios/RNGestureHandlerDirection.h

9 lines
249 B
C
Raw Normal View History

2021-08-16 00:14:59 +00:00
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, RNGestureHandlerDirection) {
RNGestureHandlerDirectionRight = 1,
RNGestureHandlerDirectionLeft = 2,
RNGestureHandlerDirectionUp = 4,
RNGestureHandlerDirectionDown = 8,
};