1 // Copyright 2015-present 650 Industries. All rights reserved. 2 #import <Foundation/Foundation.h> 3 4 #if __has_include(<EXConstants/EXConstantsService.h>) 5 #import <EXConstants/EXConstantsService.h> 6 #import <ExpoModulesCore/EXInternalModule.h> 7 #import <ExpoModulesCore/EXConstantsInterface.h> 8 9 NS_ASSUME_NONNULL_BEGIN 10 11 @interface EXConstantsBinding : EXConstantsService <EXInternalModule, EXConstantsInterface> 12 13 @property (nonatomic, readonly) NSString *appOwnership; 14 15 - (instancetype)initWithParams:(NSDictionary *)params; 16 17 @end 18 19 NS_ASSUME_NONNULL_END 20 21 #endif 22