31 lines
779 B
Objective-C
31 lines
779 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <RNReanimated/NativeProxy.h>
|
|
#import <RNReanimated/REAEventDispatcher.h>
|
|
#import <RNReanimated/REAModule.h>
|
|
#import <React/RCTBridge+Private.h>
|
|
#import <React/RCTCxxBridgeDelegate.h>
|
|
#import <ReactCommon/RCTTurboModuleManager.h>
|
|
#import <jsireact/JSIExecutor.h>
|
|
|
|
#if REACT_NATIVE_MINOR_VERSION >= 64
|
|
#import <React/RCTJSIExecutorRuntimeInstaller.h>
|
|
#endif
|
|
|
|
#if REACT_NATIVE_MINOR_VERSION < 63
|
|
#import <ReactCommon/BridgeJSCallInvoker.h>
|
|
#endif
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
namespace reanimated {
|
|
|
|
using namespace facebook;
|
|
using namespace react;
|
|
|
|
JSIExecutor::RuntimeInstaller REAJSIExecutorRuntimeInstaller(
|
|
RCTBridge *bridge,
|
|
JSIExecutor::RuntimeInstaller runtimeInstallerToWrap);
|
|
|
|
} // namespace reanimated
|
|
NS_ASSUME_NONNULL_END
|