/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/scripts/codegen/templates/RCTModulesConformingToProtocolsProviderH.template
18 строк
451 B
Riccardo Cipolleschi
Generate code to allow for linking custom Module that conforms to some protocols (#42923)
13 фев 2024, 17:18
13 фев 2024, 17:18
46d7f8a
Код
Авторство
О чём код?
/* * 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. */ #import <Foundation/Foundation.h> @interface RCTModulesConformingToProtocolsProvider: NSObject +(NSArray<NSString *> *)imageURLLoaderClassNames; +(NSArray<NSString *> *)imageDataDecoderClassNames; +(NSArray<NSString *> *)URLRequestHandlerClassNames; @end