UNPKG

fast-extract

Version:

Extract contents from various archive types (tar, tar.bz2, tar.gz, tar.xz, tgz, zip)

8 lines (7 loc) 353 B
import { Transform, type TransformCallback, type TransformOptions } from 'stream'; export default class DestinationNotExists extends Transform { private dest; private ready; constructor(dest: string, options?: TransformOptions<Transform>); _transform(chunk: unknown, _encoding: BufferEncoding, callback: TransformCallback): undefined; }