import { OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; export abstract class BaseComponent implements OnDestroy { public ngDestroyed$ = new Subject(); ngOnDestroy() { this.ngDestroyed$.next(); this.ngDestroyed$.unsubscribe(); } }