1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <React/RCTBridge.h> 4 #import <React/RCTBridgeModule.h> 5 6 @interface EXScopedBridgeModule : NSObject <RCTBridgeModule> 7 8 - (instancetype)init NS_UNAVAILABLE; 9 10 - (instancetype)initWithExperienceStableLegacyId:(NSString *)experienceStableLegacyId 11 scopeKey:(NSString *)scopeKey 12 kernelServiceDelegate:(id)kernelServiceInstance 13 params:(NSDictionary *)params NS_DESIGNATED_INITIALIZER; 14 15 - (instancetype)initWithExperienceStableLegacyId:(NSString *)experienceStableLegacyId 16 scopeKey:(NSString *)scopeKey 17 kernelServiceDelegates:(NSDictionary *)kernelServiceInstances 18 params:(NSDictionary *)params NS_DESIGNATED_INITIALIZER; 19 20 @property (nonatomic, readonly) NSString *scopeKey; 21 @property (nonatomic, readonly) NSString *experienceStableLegacyId; 22 23 @end 24