You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
856 B
31 lines
856 B
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <ExpoModulesCore/EXInternalModule.h>
|
|
#import <ExpoModulesCore/EXConstantsInterface.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
FOUNDATION_EXPORT NSString * const EXConstantsExecutionEnvironmentBare;
|
|
FOUNDATION_EXPORT NSString * const EXConstantsExecutionEnvironmentStandalone;
|
|
FOUNDATION_EXPORT NSString * const EXConstantsExecutionEnvironmentStoreClient;
|
|
|
|
@interface EXConstantsService : NSObject <EXInternalModule, EXConstantsInterface>
|
|
|
|
- (NSString *)buildVersion;
|
|
- (CGFloat)statusBarHeight;
|
|
- (NSString *)iosVersion;
|
|
- (NSString *)userInterfaceIdiom;
|
|
- (BOOL)isDevice;
|
|
- (NSArray<NSString *> *)systemFontNames;
|
|
|
|
+ (NSString *)devicePlatform;
|
|
+ (nullable NSString *)deviceModel;
|
|
+ (NSNumber *)deviceYear;
|
|
+ (NSString *)deviceName;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|