Newer
Older
CVSS_3.0_GUI / node_modules / nwjs-builder-phoenix / dist / lib / config / MacConfig.js
root on 7 May 2019 818 bytes Initial commit
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var MacConfig = /** @class */ (function () {
  4. function MacConfig(options) {
  5. if (options === void 0) { options = {}; }
  6. var _this = this;
  7. this.name = '';
  8. this.displayName = '';
  9. this.version = '';
  10. this.description = '';
  11. this.copyright = '';
  12. this.icon = undefined;
  13. this.plistStrings = {};
  14. Object.keys(this).map(function (key) {
  15. if (options[key] !== undefined) {
  16. switch (key) {
  17. default:
  18. _this[key] = options[key];
  19. break;
  20. }
  21. }
  22. });
  23. }
  24. return MacConfig;
  25. }());
  26. exports.MacConfig = MacConfig;
  27. //# sourceMappingURL=MacConfig.js.map
Buy Me A Coffee