1/** 2 * The different possible types of updates. 3 * Currently, the only supported type is `UpdateInfoType.NEW`, indicating a new update that can be downloaded and launched 4 * on the device. 5 * In future, other types of updates may be added to this list. 6 */ 7export var UpdateInfoType; 8(function (UpdateInfoType) { 9 /** 10 * This is the type for new updates found on or downloaded from the update server, that are launchable on the device. 11 */ 12 UpdateInfoType["NEW"] = "new"; 13 /** 14 * This type is used when an update is a directive to roll back to the embedded bundle. 15 */ 16 UpdateInfoType["ROLLBACK"] = "rollback"; 17})(UpdateInfoType || (UpdateInfoType = {})); 18//# sourceMappingURL=UseUpdates.types.js.map