Created
May 24, 2019 10:38
-
-
Save whisher/5c819e1c2486a5b7178453b7608654a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export abstract class BaseComponent implements OnDestroy { | |
private subscriptions: Array<Subscription> = []; | |
ngOnDestroy() { | |
this.subscriptions.forEach(sub => sub.unsubscribe()); | |
} | |
public subscription(subscription: Subscription) { | |
this.subscriptions.push(subscription); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment