1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 #import "EXKernelAppRecord.h"
4 #import "EXUpdatesBinding.h"
5 
6 @class EXManifestsManifest;
7 
8 NS_ASSUME_NONNULL_BEGIN
9 
10 @interface EXUpdatesManager : NSObject <EXUpdatesBindingDelegate>
11 
12 - (void)notifyApp:(EXKernelAppRecord *)appRecord
13 ofDownloadWithManifest:(EXManifestsManifest * _Nullable)manifest
14             isNew:(BOOL)isBundleNew
15             error:(NSError * _Nullable)error;
16 
17 @end
18 
19 NS_ASSUME_NONNULL_END
20