mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
c14cc123d5
Reviewed By: spicyj Differential Revision: D2846573 fb-gh-sync-id: 652864c773d03c24f0d68dd8335401eb052fc1bf
22 lines
532 B
Objective-C
22 lines
532 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTFrameUpdate.h"
|
|
|
|
@class RCTBridge;
|
|
|
|
@interface RCTTouchHandler : UIGestureRecognizer
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
|
|
- (void)cancel;
|
|
|
|
@end
|