This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

UpdateActivatedEvent

An event emitted when a new version of the app has been downloaded and activated.

      
      interface UpdateActivatedEvent {
  type: 'UPDATE_ACTIVATED'
  previous?: {...}
  current: {...}
}
    

Properties

Property Description
type: 'UPDATE_ACTIVATED'
previous?: { hash: string; appData?: Object; }
current: { hash: string; appData?: Object; }