Hello i just upgrade my web app from angular 5 to 6 and i have a problem width debounceTime
import { debounceTime } from 'rxjs/operators';
this.form.valueChanges.debounceTime(500).subscribe(val => {
// ...
});
error TS2339: Property 'debounceTime' does not exist on type 'Observable
Someone have a solution ?
thanks
If you're using rxjs 6 without rxjs-compat, try
this.form.valueChanges.pipe(debounceTime(500)).subscribe(val => {
...
})
Yeah It's Work !!
Thanks !!
Most helpful comment
If you're using rxjs 6 without rxjs-compat, try