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

OnDestroy

npm Package @angular/core
Module import { OnDestroy } from '@angular/core';
Source core/src/metadata/lifecycle_hooks.ts

Lifecycle hook that is called when a directive, pipe or service is destroyed.

Interface Overview

      
      interface OnDestroy { 
  ngOnDestroy(): void
}
    

How To Use

      
      @Component({selector: 'my-cmp', template: `...`})
class MyComponent implements OnDestroy {
  ngOnDestroy() {
    // ...
  }
}
    

Description

ngOnDestroy callback is typically used for any custom cleanup that needs to occur when the instance is destroyed.

See "Lifecycle Hooks Guide".

Class Implementations

Members

      
      ngOnDestroy(): void