combineLatest deprecated in favor of static combineLatest
问题 After running the rxjs migration tool using rxjs-5-to-6-migrate -p src/tsconfig.app.json I'm now getting a linting error: combineLatest is deprecated: Deprecated in favor of static combineLatest. Here is my code before running the migration command: this.store.combineLatest( this.store.select(lang.getCurrent), this.store.select(lang.getCurrentLocale) ).subscribe(([state, currentLang, locale]) => { this._language = session.language === currentLang ? '' : currentLang; this._locale = session