GT2/Ejectable/node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMNativeModulesProxy/UMNativeModulesProxy.h

17 lines
545 B
C
Raw Normal View History

2021-08-16 00:14:59 +00:00
// Copyright 2018-present 650 Industries. All rights reserved.
#import <React/RCTBridgeModule.h>
#import <UMCore/UMInternalModule.h>
#import <UMCore/UMModuleRegistry.h>
// RCTBridgeModule capable of receiving method calls from JS and forwarding them
// to proper exported universal modules. Also, it exports important constants to JS, like
// properties of exported methods and modules' constants.
@interface UMNativeModulesProxy : NSObject <RCTBridgeModule>
- (instancetype)initWithModuleRegistry:(UMModuleRegistry *)moduleRegistry;
@end