VersionReadyEvent
An event emitted when a new version of the app is available.
interface VersionReadyEvent {
type: 'VERSION_READY'
currentVersion: {...}
latestVersion: {...}
}
See also
Properties
Property | Description |
---|---|
type: 'VERSION_READY'
|
|
currentVersion: {
hash: string;
appData?: object;
}
|
|
latestVersion: {
hash: string;
appData?: object;
}
|