UNPKG

zipster

Version:

TypeScript library built for Node backends to create ZIP files with password protection

14 lines 432 B
import { Archiver } from 'archiver'; import { Options } from '../types/Options'; /** * Archiver Factory creates an archiver instance configured with specified options */ declare class ArchiverFactory { /** * Get a configured archiver instance */ static getArchiver(options: Options): Archiver; private static registerZipEncryptable; } export { ArchiverFactory }; //# sourceMappingURL=ArchiverFactory.d.ts.map