mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d902a89b40
Summary: changelog: [internal] Just moving code that doesn't belong to UIManagerBinding out of the class. Reviewed By: philIip Differential Revision: D33060412 fbshipit-source-id: 2d54929072cef14fd1fa6b70bde382ae21ecff45
21 lines
459 B
C++
21 lines
459 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <jsi/jsi.h>
|
|
|
|
namespace facebook::react {
|
|
|
|
jsi::Value callMethodOfModule(
|
|
jsi::Runtime &runtime,
|
|
std::string const &moduleName,
|
|
std::string const &methodName,
|
|
std::initializer_list<jsi::Value> args);
|
|
|
|
} // namespace facebook::react
|