21 lines
433 B
Objective-C
21 lines
433 B
Objective-C
//
|
|
// ReactBridgeManager.h
|
|
// TecnaviaApplication
|
|
//
|
|
// Created by iPad Developer on 18.01.21.
|
|
// Copyright © 2021 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridge.h>
|
|
|
|
@interface ReactBridgeManager : NSObject
|
|
@property (nonatomic, strong, readonly) RCTBridge *bridge;
|
|
|
|
+ (id) sharedManager;
|
|
|
|
- (void) initBridgeWithLaunchOptions:(NSDictionary *)launchOptions;
|
|
- (void) reload;
|
|
|
|
@end
|