UNPKG

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