ref: Angular, Observable, rxjx 6.4.0
My code reads:
import { Observable } from 'rxjs';
import 'rxjs/add/observable/of';
...
return Observable.of(this.products);
...
The error reads:
Property 'of' does not exist on type 'typeof Observable'.
I can also remove the /add from the import since of.js exists on both folders. But this returns the same error.