rxjs combinelatest deprecated code example
Example: combinelatest deprecated
If you see combineLatest is deprecated:
Pass arguments in a single array instead then just add []:
const a$ = combineLatest([
this.aStore.select(b.getAuth),
this.cStore.select(b.getUrl)
]);
const result$ = a$.pipe(
map(results => ({auth: results[0], url: results[1]}))
)