1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 #import "EXAbstractLoader.h"
4 
5 @class EXUpdatesConfig;
6 @class EXUpdatesSelectionPolicy;
7 @protocol EXUpdatesAppLauncher;
8 
9 NS_ASSUME_NONNULL_BEGIN
10 
11 /**
12  * Private header that should only be used by EXUpdatesManager kernel service
13  */
14 
15 @interface EXAbstractLoader ()
16 
17 @property (nonatomic, readonly, nullable) EXUpdatesConfig *config;
18 @property (nonatomic, readonly, nullable) EXUpdatesSelectionPolicy *selectionPolicy;
19 @property (nonatomic, readonly, nullable) id<EXUpdatesAppLauncher> appLauncher;
20 @property (nonatomic, readonly, assign) BOOL isEmergencyLaunch;
21 
22 @end
23 
24 NS_ASSUME_NONNULL_END
25