17 lines
322 B
C
17 lines
322 B
C
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
|
||
|
#include <ReactCommon/JavaTurboModule.h>
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
std::shared_ptr<TurboModule> MainApplicationModuleProvider(
|
||
|
const std::string &moduleName,
|
||
|
const JavaTurboModule::InitParams ¶ms);
|
||
|
|
||
|
} // namespace react
|
||
|
} // namespace facebook
|