UNPKG

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