If you try to use the Auth function createUserAndRetrieveDataWithEmailAndPassword, Typescript complaints about it: Property 'createUserAndRetrieveDataWithEmailAndPassword' does not exist on type 'Auth'.
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 function signInAndRetrieveDataWithEmailAndPassword is also missing.
@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 https://github.com/firebase/firebase-js-sdk/commit/9d00c6f0c57f8ddd73a740766918eece7a53c6aa
@Splaktar I just added one function, but as bojeil-google said, there are more pending functions to add, like signInAndRetrieveDataWithEmailAndPassword.
The missing ones should be available now.
Most helpful comment
The missing ones should be available now.