From 7f26a790e5cad62890dcc378a4a07021a0393488 Mon Sep 17 00:00:00 2001 From: a1109471307 <50288272+a1109471307@users.noreply.github.com> Date: Thu, 3 Jul 2025 18:05:09 +0800 Subject: [PATCH] Create TSStreamingInstaller.h --- Modules/TSStreamingInstaller.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Modules/TSStreamingInstaller.h diff --git a/Modules/TSStreamingInstaller.h b/Modules/TSStreamingInstaller.h new file mode 100644 index 0000000..f397389 --- /dev/null +++ b/Modules/TSStreamingInstaller.h @@ -0,0 +1,7 @@ +#import + +@interface TSStreamingInstaller : NSObject +- (instancetype)initWithIPAAtPath:(NSString *)ipaPath; +- (BOOL)installToDestination:(NSString *)destinationPath; +@property (nonatomic, copy) void (^progressHandler)(float progress); +@end