/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCxxPlatform/react/nativemodule/JavaScriptModule.h
21 строка
486 B
Zeya Peng
Fix license comment block in ReactCxxPlatform code
11 апр 2025, 20:44
11 апр 2025, 20:44
5747fc4
Код
Авторство
О чём код?
/* * 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. */ #pragma once #include <folly/dynamic.h> #include <functional> #include <string> namespace facebook::react { using JavaScriptModuleCallback = std::function<void( const std::string& moduleName, const std::string& methodName, folly::dynamic&& args)>; } // namespace facebook::react