'Error' message: 'Property 'from' does not exist on type 'typeof Observable'

Deepak Pathak picture Deepak Pathak · Oct 29, 2017 · Viewed 14.7k times · Source

I am trying to learn reactive programming using RxJS. I was trying to create an observable from an array using Observable.from() method, but I am getting an error:

Property 'from' does not exist on type 'typeof Observable'

I scaffolded an Angular application using Angular CLI, so all the dependencies including RxJS package was imported correctly.

In app.component.ts I added below import statements:

import { Observable} from 'rxjs/Observable'
import 'rxjs/observable/from'

And my AppComponent class looks like this:

export class AppComponent {

  numbers: number[] = [1, 2, 3, 4, 5];

  callMyObservable() : void {  
    Observable.from(this.numbers);
  }
}  

But I am getting the above mentioned compile time error.

I am not sure how to make it work.

Answer

abaga129 picture abaga129 · Jul 10, 2018

If you are using rxjs >=6.0.0 then you no longer use Observable.from. Instead from is a standalone function.

import { Observable, from} from 'rxjs';

//old way
var o = Observable.from([1, 2, 3, 4]);

//new way
var o = from([1, 2, 3, 4]);

I hope this is helpful since it took me a while to figure this out.