ns2-front-module-common
Version: 
NS2 common module
31 lines • 908 B
JavaScript
// Сервис конфигурации
// @dynamic
var CommonConfigService = (function () {
    function CommonConfigService() {
    }
    Object.defineProperty(CommonConfigService, "gw", {
        get: function () {
            return CommonConfigService._gw;
        },
        set: function (value) {
            CommonConfigService._gw = value;
        },
        enumerable: true,
        configurable: true
    });
    Object.defineProperty(CommonConfigService, "storage", {
        get: function () {
            return CommonConfigService._storage;
        },
        set: function (value) {
            CommonConfigService._storage = value;
        },
        enumerable: true,
        configurable: true
    });
    return CommonConfigService;
}());
export { CommonConfigService };
CommonConfigService._gw = '';
CommonConfigService._storage = '';
//# sourceMappingURL=common-config.service.js.map