zipster
Version:
TypeScript library built for Node backends to create ZIP files with password protection
13 lines • 353 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Valid formats for the archiver
*/
var Formats;
(function (Formats) {
Formats["TAR"] = "tar";
Formats["ZIP"] = "zip";
Formats["ZIP_ENCRYPTED"] = "zip-encryptable";
})(Formats || (Formats = {}));
exports.Formats = Formats;
//# sourceMappingURL=Formats.js.map