Answers for "combinelatest deprecated"

0

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]}))
)
Posted by: Guest on December-21-2020

Code answers related to "combinelatest deprecated"

Browse Popular Code Answers by Language