UNPKG

519 BTypeScriptView Raw
1import { IStreamAndLength, IZip, Zip } from "./zip";
2export declare class Zip3 extends Zip {
3 readonly filePath: string;
4 readonly zip: any;
5 static loadPromise(filePath: string): Promise<IZip>;
6 private static loadPromiseHTTP;
7 private entries;
8 private constructor();
9 freeDestroy(): void;
10 entriesCount(): number;
11 hasEntries(): boolean;
12 hasEntry(entryPath: string): boolean;
13 getEntries(): Promise<string[]>;
14 entryStreamPromise(entryPath: string): Promise<IStreamAndLength>;
15}