UNPKG

@writetome51/unsubscribe-on-destroy-directive

Version:

Abstract Angular directive that unsubscribes from Subscriptions during ngOnDestroy()

15 lines (6 loc) 248 B
import { OnDestroy } from '@angular/core'; export declare abstract class UnsubscribeOnDestroyDirective implements OnDestroy { protected _subscriptions: Array<{ unsubscribe: () => any; }>; ngOnDestroy(): void; private __unsubscribeAll; }