This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
firebase.createUser() returns wrong return type on resolve in android version of code #141
Labels
Milestone
The typescript definition declares that createUser should return a type of Promise
export function createUser(options: CreateUserOptions): Promise<CreateUserResult>;
The android version of the code is returning a
Promise<User>
result via the toLoginResult function. The iOS version of the code returns the correct type of result.I've already fixed this in a local version and will make a pull request for you.
James
The text was updated successfully, but these errors were encountered: