simform-pocket-cli
Version:
Pocket Deploy command-line utility
19 lines • 767 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileContentType = exports.AppPlatform = exports.FileType = void 0;
var FileType;
(function (FileType) {
FileType["Apk"] = "apk";
FileType["Ipa"] = "ipa";
})(FileType || (exports.FileType = FileType = {}));
var AppPlatform;
(function (AppPlatform) {
AppPlatform["Android"] = "android";
AppPlatform["IOS"] = "ios";
})(AppPlatform || (exports.AppPlatform = AppPlatform = {}));
var FileContentType;
(function (FileContentType) {
FileContentType["Ipa"] = "application/octet-stream";
FileContentType["Apk"] = "application/vnd.android.package-archive";
})(FileContentType || (exports.FileContentType = FileContentType = {}));
//# sourceMappingURL=CommonTypes.js.map