The angular material documentation app has the following snippet in it:
// Combine params from all of the path into a single object.
this.params = combineLatest(
this._route.pathFromRoot.map(route => route.params),
Object.assign);
TSLint strikesout combineLatest with this message:
@deprecated — resultSelector no longer supported, pipe to map instead
How should that be fixed?
Also if you understand the technique being used, a simple example with elaboration would be awesome.
Here's a code link: