“rxjs” observable.throw is not a function – Angular4
The error There are multiple modules with names that only differ in casing. is indicating the wrong import is being targeted with how you are trying to use Observable. The import should be with a capital “O” like: import { Observable } from ‘rxjs/Observable’; This will import the individual Observable operator, which be used in … Read more