newsmemory-ios-sdk/Frameworks/react-native-zip-archive.xc.../ios-arm64/Headers/RNZipArchive.h

26 lines
534 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
//
// RNZipArchive.h
// RNZipArchive
//
// Created by Perry Poon on 8/26/15.
// Copyright (c) 2015 Perry Poon. All rights reserved.
//
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import "SSZipArchive/SSZipArchive.h"
@interface RNZipArchive : NSObject<RCTBridgeModule, SSZipArchiveDelegate>{
NSString *unzippedFilePath;
float unzipProgress;
}
@property (nonatomic) NSString *unzippedFilePath;
@property (nonatomic) float unzipProgress;
@end