I'm migrating to rxjs@5.5.2 and using lettable operators... I also update Observable static methods. I wonder what is the counterpart of Observable.throw and import 'rxjs/add/observable/throw';.
Should I import ugly _throw?
import { _throw } from 'rxjs/observable/throw';
Or there's a better way. Honestly I liked static methods on Observable, and now it seems that all static creating methods like of, from should be imported from rxjs/observable/<methodName> ?