Interface BundleInfo

interface BundleInfo {
    isMasterReady: string;
    isUpdateReady: string;
    masterDir: string;
    masterVersion: null | string;
    updateDir: string;
    updateVersion: null | string;
}

Properties

isMasterReady: string
isUpdateReady: string

true if the update is fully downloaded and ready to be applied.

masterDir: string

The directory where the master bundle is stored.

masterVersion: null | string

The version of the bundle that is currently running.

updateDir: string

The directory where the update bundle is stored.

updateVersion: null | string

The version of the update.