GT2/Ejectable/node_modules/react-native-gesture-handler/ios/RNGestureHandlerDirection.h
2021-08-16 00:14:59 +00:00

8 lines
249 B
Objective-C

#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, RNGestureHandlerDirection) {
RNGestureHandlerDirectionRight = 1,
RNGestureHandlerDirectionLeft = 2,
RNGestureHandlerDirectionUp = 4,
RNGestureHandlerDirectionDown = 8,
};