mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 03:26:07 +00:00
fd8b7dee77
- Unbreak ReactKit | Nick Lockwood - Refactor | Nick Lockwood - [ReactNative] fix touch cancel behavior | Spencer Ahrens - [ReactNative iOS] Fix responder issue with textInput | Eric Vicenti - [ReactNative] README updates - file watching troubleshooting, one-time code drop -> currently private repo | Spencer Ahrens - [ReactKit] Re-add README linebreaks | Ben Alpert
11 lines
267 B
Objective-C
11 lines
267 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, RCTPointerEvents) {
|
|
RCTPointerEventsUnspecified = 0, // Default
|
|
RCTPointerEventsNone,
|
|
RCTPointerEventsBoxNone,
|
|
RCTPointerEventsBoxOnly,
|
|
};
|