11 lines
267 B
C
11 lines
267 B
C
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
typedef NS_ENUM(NSInteger, RCTPointerEvents) {
|
||
|
RCTPointerEventsUnspecified = 0, // Default
|
||
|
RCTPointerEventsNone,
|
||
|
RCTPointerEventsBoxNone,
|
||
|
RCTPointerEventsBoxOnly,
|
||
|
};
|