mirror of
https://github.com/opa334/TrollStore.git
synced 2025-07-07 00:38:46 +08:00
8 lines
265 B
Objective-C
8 lines
265 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface TSStreamingInstaller : NSObject
|
|
- (instancetype)initWithIPAAtPath:(NSString *)ipaPath;
|
|
- (BOOL)installToDestination:(NSString *)destinationPath;
|
|
@property (nonatomic, copy) void (^progressHandler)(float progress);
|
|
@end
|