We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using angular 10 and facing this issue
The text was updated successfully, but these errors were encountered:
error TS2305: Module '"../../node_modules/rxjs/Observable"' has no exported member 'Observable'.
2 import { Observable } from 'rxjs/Observable';
Sorry, something went wrong.
Try to change this part:
import { Observable, interval as obInterval } from 'rxjs'; import { map, takeWhile, tap } from 'rxjs/operators'; ... start(){ let interval: any = obInterval(1000); interval .pipe( takeWhile((_: any) => !this.isFinished ), tap(() => this.current += 0.1) ) .subscribe(); }
No branches or pull requests
I am using angular 10 and facing this issue
The text was updated successfully, but these errors were encountered: