1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-07-07 00:38:46 +08:00
TrollStore/Modules/TSStreamingInstaller.h
2025-07-03 18:05:09 +08:00

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