UNPKG

firmament-vita

Version:

Firmament module for automating VITA tasks

48 lines 2.22 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); var inversify_1 = require("inversify"); var cerialize_1 = require("cerialize"); var UnZipFileOptionsImpl = (function () { function UnZipFileOptionsImpl() { this.zippedFiles = []; this.targetFolder = ''; this.deleteOriginalZipFile = false; this.foldersOfZippedFiles = []; } UnZipFileOptionsImpl.prototype.validate = function () { if (!this.targetFolder) { throw new Error("UnZipFileOptions.targetFolder cannot be empty"); } }; __decorate([ cerialize_1.autoserialize, __metadata("design:type", Array) ], UnZipFileOptionsImpl.prototype, "zippedFiles", void 0); __decorate([ cerialize_1.autoserialize, __metadata("design:type", String) ], UnZipFileOptionsImpl.prototype, "targetFolder", void 0); __decorate([ cerialize_1.autoserialize, __metadata("design:type", Boolean) ], UnZipFileOptionsImpl.prototype, "deleteOriginalZipFile", void 0); __decorate([ cerialize_1.autoserialize, __metadata("design:type", Array) ], UnZipFileOptionsImpl.prototype, "foldersOfZippedFiles", void 0); UnZipFileOptionsImpl = __decorate([ inversify_1.injectable() ], UnZipFileOptionsImpl); return UnZipFileOptionsImpl; }()); exports.UnZipFileOptionsImpl = UnZipFileOptionsImpl; //# sourceMappingURL=unzip-file-options-impl.js.map