1
0
mirror of https://github.com/opa334/TrollStore.git synced 2026-04-04 12:10:12 +08:00
TrollStore/TrollStore/TSInstallationController.h

14 lines
521 B
Objective-C

@import Foundation;
@interface TSInstallationController : NSObject
+ (void)presentInstallationAlertIfEnabledForFile:(NSString*)pathToIPA isRemoteInstall:(BOOL)remoteInstall completion:(void (^)(BOOL, NSError*))completionBlock;
+ (void)handleAppInstallFromFile:(NSString*)pathToIPA forceInstall:(BOOL)force stealthInstall:(BOOL)stealth completion:(void (^)(BOOL, NSError*))completion;
+ (void)handleAppInstallFromRemoteURL:(NSURL*)remoteURL completion:(void (^)(BOOL, NSError*))completion;
+ (void)installLdid;
@end