BundleUpdateInfo

Information about a bundle update.

Information about a bundle update.

View source ↗

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');
}

On this page