UpdateActivatedEvent
An event emitted when a new version of the app has been downloaded and activated.
interface UpdateActivatedEvent {
type: 'UPDATE_ACTIVATED'
previous?: {...}
current: {...}
}
属性
属性 | 说明 |
---|---|
type: 'UPDATE_ACTIVATED' | |
previous?: {
hash: string;
appData?: Object;
} | |
current: {
hash: string;
appData?: Object;
} |