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'm submitting a:
Avoid monkey patching rxjs operators. Instead of
import 'rxjs/add/observable/of';
the new import style should be used:
import { of } from 'rxjs/observable/of';
The text was updated successfully, but these errors were encountered:
chore(rxjs): change import of of operator
of
df62298
Use the pipeable import for `of` operator instead of the monkey patching one. Closes DethAriel#95
388863b
Use the pipeable import for `of` operator instead of the monkey patching one. Closes #95
fix(rxjs): change import of of operator
3e0bda6
No branches or pull requests
Summary
I'm submitting a:
Description
Avoid monkey patching rxjs operators. Instead of
the new import style should be used:
The text was updated successfully, but these errors were encountered: