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