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