CN-Tower
CN-Tower
### Preflight Checklist - [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. -...
```typescript export class SomeComponent implements OnDestroy { private subs = new SubSink(); ngOnInit() { // Original Methods this.subs.sink = observable$.subscribe(...); this.subs.add(observable$.subscribe(...)); // Subscribe by ID this.subs.id('sub1').sink = observable$.subscribe(...); this.subs.id('sub2').sink =...