UNPKG

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