@rushstack/package-extractor
Version:
A library for bundling selected files and dependencies into a deployable package.
13 lines • 455 B
TypeScript
import { type FileSystemStats } from '@rushstack/node-core-library';
export interface IAddToArchiveOptions {
filePath?: string;
fileData?: Buffer | string;
archivePath: string;
stats?: FileSystemStats;
}
export declare class ArchiveManager {
private _zip;
addToArchiveAsync(options: IAddToArchiveOptions): Promise<void>;
createArchiveAsync(archiveFilePath: string): Promise<void>;
}
//# sourceMappingURL=ArchiveManager.d.ts.map