I am having issue with importing Observable.of function in my project. My Intellij sees everything. In my code I have:
Observable.of
import {Observable} from
Patching wasn't working for me, for whatever reason, so I had to resort to this method:
import { of } from 'rxjs/observable/of' // ... return of(res)