mobile-cli-lib
Version:
common lib used by different CLI
20 lines (19 loc) • 648 B
JavaScript
;
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;