zip-iterator
Version:
Extract contents from zip archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms
16 lines (15 loc) • 384 B
TypeScript
import { Reader } from 'zip';
import { Readable } from 'stream';
export default class Zip extends Reader {
constructor(fd: any);
iterator(): {
next: () => {
localHeader: any;
stream: Reader;
start: any;
centralHeader: any;
lastModified: () => Date;
getStream: () => Readable;
};
};
}