// Copyright 2018-present 650 Industries. All rights reserved. #import #import // An "adapter" over module registry, for given RCTBridge and NSString // is able to provide an array of exported RCTBridgeModules. Override // it and use in your AppDelegate to export different bridge modules // for different experiences. NS_SWIFT_NAME(ModuleRegistryAdapter) @interface EXModuleRegistryAdapter : NSObject @property (nonnull, nonatomic, readonly) EXModuleRegistryProvider *moduleRegistryProvider; - (nonnull instancetype)initWithModuleRegistryProvider:(nonnull EXModuleRegistryProvider *)moduleRegistryProvider __deprecated_msg("Expo modules are now automatically registered. You can remove this method call."); - (nonnull NSArray> *)extraModulesForModuleRegistry:(nonnull EXModuleRegistry *)moduleRegistry; - (nonnull NSArray> *)extraModulesForBridge:(nonnull RCTBridge *)bridge __deprecated_msg("Expo modules are now automatically registered. You can replace this with an empty array."); @end