/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/runtime/BindingsInstaller.h
21 строка
442 B
Arushi Kesarwani
Bridgeless -> Runtime (#39099)
29 авг 2023, 03:46
29 авг 2023, 03:46
62e1110
Код
Авторство
О чём код?
/* * 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 <react/runtime/ReactInstance.h> namespace facebook::react { class BindingsInstaller { public: virtual ReactInstance::BindingsInstallFunc getBindingsInstallFunc() { return nullptr; } }; } // namespace facebook::react