Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/react-native-gesture-handler/apple/RNManualActivationRecognizer.h
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

19 lines
446 B
Objective-C

#if !TARGET_OS_OSX
#import <UIKit/UIGestureRecognizerSubclass.h>
#else
#import <Appkit/NSGestureRecognizer.h>
#endif
@class RNGestureHandler;
#if !TARGET_OS_OSX
@interface RNManualActivationRecognizer : UIGestureRecognizer <UIGestureRecognizerDelegate>
#else
@interface RNManualActivationRecognizer : NSGestureRecognizer <NSGestureRecognizerDelegate>
#endif
- (id)initWithGestureHandler:(RNGestureHandler *)gestureHandler;
- (void)fail;
@end