UNPKG

ngx-collapsible-sidebar

Version:

A simple sidenav that gives the functionality for the collapsed view of the sidebar.

12 lines (9 loc) 260 B
import {OnDestroy} from '@angular/core'; import {Subject} from 'rxjs'; export abstract class Unsubscribe implements OnDestroy { protected destroyed$ = new Subject(); ngOnDestroy(): void { this.destroyed$.next(); this.destroyed$.complete(); } }