/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
private/react-native-fantom/tester/src/platform/oss/TesterTurboModuleProvider.cpp
17 строк
557 B
Pieter De Baets
Rename TurboModuleManagerDelegate to TurboModuleProvider (#54390)
04 ноя 2025, 18:07
04 ноя 2025, 18:07
5f69ff7
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "../TesterTurboModuleProvider.h" namespace facebook::react { /* static */ TurboModuleProvider TesterTurboModuleProvider::getTurboModuleProvider() { return TurboModuleProvider{ [](const std::string& name, const std::shared_ptr<CallInvoker>& jsInvoker) -> std::shared_ptr<TurboModule> { return nullptr; }}; } } // namespace facebook::react