Its said that we can convert anything into stream using rxjs, here i want to convert the data coming from input field into stream and later subscribe to it, there is method in angular2 for this using valueChanges event
this.input.valueChanges.subscribe(
(value: string) => { console.log('sku changed to: ', value); }
);
but when Im trying to create stream in component class like this
Observables.create().subscribe()
the create is not recognized, also how can i do this in rxjs as value changes into input field, its related to angular2 forms, also what is useful function to create stream for this