24 lines
523 B
C
24 lines
523 B
C
|
//
|
||
|
// BridgeEmitter.h
|
||
|
// TecnaviaApplication
|
||
|
//
|
||
|
// Created by iPad Developer on 12.02.19.
|
||
|
// Copyright © 2019 Facebook. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <React/RCTBridgeModule.h>
|
||
|
#import <React/RCTEventEmitter.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface BridgeEmitter : RCTEventEmitter <RCTBridgeModule>
|
||
|
|
||
|
- (void)sendKeyDown:(NSDictionary *)event;
|
||
|
- (void)sendKeyUp:(NSDictionary *)event;
|
||
|
- (void)sendEvent:(NSString *)event;
|
||
|
- (void)sendEvent:(NSString *)event withBody:(NSDictionary *)body;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|