1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-07-06 08:18:45 +08:00

Create TSStreamingInstaller.h

This commit is contained in:
a1109471307 2025-07-03 18:05:09 +08:00 committed by GitHub
parent 7f91ea5cd9
commit 7f26a790e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,7 @@
#import <Foundation/Foundation.h>
@interface TSStreamingInstaller : NSObject
- (instancetype)initWithIPAAtPath:(NSString *)ipaPath;
- (BOOL)installToDestination:(NSString *)destinationPath;
@property (nonatomic, copy) void (^progressHandler)(float progress);
@end