BundleUpdateInfo
Information about a bundle update.
Information about a bundle update.
Properties
Prop
Type
Examples
const updateInfo = await updater.getUpdate('app');
if (updateInfo.isAvailable) {
console.log(`Update available: ${updateInfo.localVersion} → ${updateInfo.version}`);
await updater.download('app');
}