UNPKG

mobile-cli-lib

Version:
20 lines (19 loc) 648 B
"use strict"; var helpers = require("../../helpers"); var DeviceAppDataBase = (function () { function DeviceAppDataBase(_appIdentifier) { this._appIdentifier = _appIdentifier; } Object.defineProperty(DeviceAppDataBase.prototype, "appIdentifier", { get: function () { return this._appIdentifier; }, enumerable: true, configurable: true }); DeviceAppDataBase.prototype.getDeviceProjectRootPath = function (projectRoot) { return helpers.fromWindowsRelativePathToUnix(projectRoot); }; return DeviceAppDataBase; }()); exports.DeviceAppDataBase = DeviceAppDataBase;