-
Notifications
You must be signed in to change notification settings - Fork 893
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
Missing type declarations in Auth interface #573
Comments
The function |
@bojeil-google Thanks, but shouldn't it be also defined in firebase/index.d.ts? |
Ah, i had forgotten about this file. There are a bunch of missing APIs there. Ok, will look into adding the missing APIs. |
Looks like this got solved in 9d00c6f |
@Splaktar I just added one function, but as bojeil-google said, there are more pending functions to add, like |
The missing ones should be available now. |
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
Steps to reproduce:
If you try to use the Auth function createUserAndRetrieveDataWithEmailAndPassword, Typescript complaints about it:
Property 'createUserAndRetrieveDataWithEmailAndPassword' does not exist on type 'Auth'
.Relevant Code:
In firebase/index.d.ts the function
createUserAndRetrieveDataWithEmailAndPassword
should be defined in the Auth interface, as it is in auth-types/index.d.ts.The text was updated successfully, but these errors were encountered: