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/EXConstantsInterface.h> 7 8 NS_ASSUME_NONNULL_BEGIN 9 10 @interface EXConstantsBinding : EXConstantsService <EXInternalModule, EXConstantsInterface> 11 12 @property (nonatomic, readonly) NSString *appOwnership; 13 14 - (instancetype)initWithParams:(NSDictionary *)params; 15 16 @end 17 18 NS_ASSUME_NONNULL_END 19 20 #endif 21