-
Notifications
You must be signed in to change notification settings - Fork 927
Ensure app-types package includes private.d.ts #391
New issue
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Hi guys, I am working on Ionic2 project with firebase I tried this Inside package.json, remove ^ from "firebase": "^4.8.1" But unable to resolve the following issue in ionic2 typescript: Users/vyas/node_modules/@firebase/database/dist/esm/src/api/Database.d.ts, line: 4 L3: import { FirebaseApp } from '@firebase/app-types'; L16: getToken(forceRefresh: boolean): Promise; Can any body help me with this. |
Hi, I still have the issue of
|
I have the same problem, I have tried everything too |
With the holidays, this has not yet been released. Look for this to be resolved in this weeks release! |
Hi, I still have the issue I have downgraded my firebase and is still the same |
even I am facing the same problem suddenly. I downgraded to "firebase": "^4.8.0", |
@chezdrz did you find any solution to this? I am facing the same issue. |
perform the following steps
Hopefully it should work fine |
perform the following steps
1. npm uninstall firebase
2. install firebase latest release (npm install firebase). firebase
4.9.0 will be installed.
3. in your application src code replace firebase typings as follows
4. replace: import * as firebase from 'firebase'
5. to: import * as firebase from 'firebase/app' throughout your src code
application
Hopefully it should work fine
…On Thu, Feb 15, 2018 at 6:15 AM, prantikv ***@***.***> wrote:
@chezdrz <https://github.com/chezdrz> did you find any solution to this?
I am facing the same issue.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#391 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMt49i0at4-Ulat2U8N-onDboF78ZI-Iks5tVDv8gaJpZM4RHi-J>
.
|
Fixes an issue introduced with the type refactor (i.e. #334)