12345678910111213141516171819202122 |
-
- #import <Foundation/Foundation.h>
-
- #import <React/RCTEventEmitter.h>
- #import <React/RCTBridgeModule.h>
-
- #import "RNNNavigationEvent.h"
-
- @interface RNNEventEmitter : RCTEventEmitter <RCTBridgeModule>
-
- -(void)sendOnAppLaunched;
-
- -(void)sendComponentDidAppear:(NSString*)componentId;
-
- -(void)sendComponentDidDisappear:(NSString*)componentId;
-
- -(void)sendOnNavigationButtonPressed:(NSString*)componentId buttonId:(NSString*)buttonId;
-
- -(void)sendNavigationEvent:(RNNNavigationEvent*)navigationEvent;
-
- @end
|