/* * 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 "RCTAppDependencyProvider.h" #import #import #import #import @implementation RCTAppDependencyProvider - (nonnull NSArray *)URLRequestHandlerClassNames { return RCTModulesConformingToProtocolsProvider.URLRequestHandlerClassNames; } - (nonnull NSArray *)imageDataDecoderClassNames { return RCTModulesConformingToProtocolsProvider.imageDataDecoderClassNames; } - (nonnull NSArray *)imageURLLoaderClassNames { return RCTModulesConformingToProtocolsProvider.imageURLLoaderClassNames; } - (nonnull NSArray *)unstableModulesRequiringMainQueueSetup { return RCTUnstableModulesRequiringMainQueueSetupProvider.modules; } - (nonnull NSDictionary> *)thirdPartyFabricComponents { return RCTThirdPartyComponentsProvider.thirdPartyFabricComponents; } - (nonnull NSDictionary> *)moduleProviders { return RCTModuleProviders.moduleProviders; } @end