UNPKG

zipster

Version:

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

10 lines 196 B
/** * Valid formats for the archiver */ declare enum Formats { TAR = "tar", ZIP = "zip", ZIP_ENCRYPTED = "zip-encryptable" } export { Formats }; //# sourceMappingURL=Formats.d.ts.map