mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-21 17:10:30 +08:00
Summary: Use the new copyright header format used elsewhere in the React Native repository. Reviewed By: shergin Differential Revision: D14091706 fbshipit-source-id: b27b8e6bcdf2f3d9402886dbc6b68c305150b7d5
14 lines
412 B
Objective-C
14 lines
412 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <react/components/view/TouchEventEmitter.h>
|
|
|
|
@protocol RCTTouchableComponentViewProtocol <NSObject>
|
|
- (facebook::react::SharedTouchEventEmitter)touchEventEmitterAtPoint:(CGPoint)point;
|
|
@end
|