After upgrading to angular 4.0 i am getting errors for RxJs variables. Everything builds fine. But when i load the page i get this error
ERROR Error: Uncaught (in promise): TypeError: Cannot read property 'forkJoin' of undefined TypeError: Cannot read property 'forkJoin' of undefined
i am using forkJoin in an init function
init(){
return Observable.forKJoin()
}
I import the Observable at the top and it looks like this
import {Observable,Observer,Subject,BehaviorSubject} from 'rxjs/Rx';
what changes were made that would all of a sudden cause these issues. My code runs fine pre 4.0
'rxjs/Rx'? That file includes all of the side-effect imports for the operators so you should not have the problem you've described. - cartant