20 lines
309 B
Objective-C
20 lines
309 B
Objective-C
//
|
|
// KeyViewController.h
|
|
// react-native-bridge
|
|
//
|
|
// Created by iPad Developer on 06.05.25.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BridgeEmitter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KeyViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) BridgeEmitter *emitter;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|