@backtrace/sourcemap-tools
Version:
Backtrace-JavaScript sourcemap tools
11 lines (10 loc) • 317 B
TypeScript
import { TransformOptions } from 'stream';
import zlib from 'zlib';
export declare class ZipArchive {
private readonly _pack;
private readonly _gz;
constructor(opts?: TransformOptions);
get stream(): zlib.Gzip;
append(name: string, sourceMap: string): this;
finalize(): Promise<ZipArchive>;
}