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