UNPKG

@ngx-cocktail/destroyable

Version:

The library contains code for destoyable feature.

7 lines (6 loc) 210 B
import { OnDestroy } from '@angular/core'; import { Observable } from 'rxjs'; export interface Destroyable extends Partial<OnDestroy> { readonly destroyed$: Observable<unknown>; ngOnDestroy?(): void; }