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
Blocked by angular/angular#12631
Angular's AoT compiler currently does not support interface type annotations inside constructor parameters. So I had to change a type from firebase.app.App to any to make ngc succeed: https://github.com/angular/angularfire2/blob/01b04a315053e7a6433e73c552754d9355b12a92/src/auth/firebase_sdk_auth_backend.ts#L30
firebase.app.App
any
ngc
Once the upstream issue is resolved, the type annotation should be changed back to firebase.app.App.
The text was updated successfully, but these errors were encountered:
fix(AoT): change constructor param interface type annotation to any
d7e316a
See angular#653
390f497
2c0a57f
See #653
No branches or pull requests
Blocked by angular/angular#12631
Angular's AoT compiler currently does not support interface type annotations inside constructor parameters. So I had to change a type from
firebase.app.App
toany
to makengc
succeed: https://github.com/angular/angularfire2/blob/01b04a315053e7a6433e73c552754d9355b12a92/src/auth/firebase_sdk_auth_backend.ts#L30Once the upstream issue is resolved, the type annotation should be changed back to
firebase.app.App
.The text was updated successfully, but these errors were encountered: