2018-05-22 22:48:21 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-22 22:48:21 +00:00
|
|
|
*
|
|
|
|
* 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/RCTMountItemProtocol.h>
|
|
|
|
#import <React/RCTPrimitives.h>
|
2018-07-18 05:41:39 +00:00
|
|
|
#import <fabric/events/EventEmitter.h>
|
2018-05-22 22:48:21 +00:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates event handlers of a component view.
|
|
|
|
*/
|
2018-06-09 20:02:55 +00:00
|
|
|
@interface RCTUpdateEventEmitterMountItem : NSObject <RCTMountItemProtocol>
|
2018-05-22 22:48:21 +00:00
|
|
|
|
|
|
|
- (instancetype)initWithTag:(ReactTag)tag
|
2018-06-09 20:02:55 +00:00
|
|
|
eventEmitter:(facebook::react::SharedEventEmitter)eventEmitter;
|
2018-05-22 22:48:21 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|