1 // Copyright 2018-present 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 #import <CoreGraphics/CoreGraphics.h> 5 6 @protocol EXConstantsInterface 7 8 - (NSDictionary *)constants; 9 10 - (NSString *)buildVersion; 11 - (CGFloat)statusBarHeight; 12 - (NSString *)iosVersion; 13 - (NSString *)userInterfaceIdiom; 14 - (BOOL)isDevice; 15 - (NSArray<NSString *> *)systemFontNames; 16 17 + (NSString *)devicePlatform; 18 + (NSString *)deviceName; 19 20 @end 21