Skip to content

Commit

Permalink
add missing function in auth interface (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaloriestra authored and Josh Crowther committed Mar 19, 2018
1 parent d3ec2e0 commit 9d00c6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/firebase/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ declare namespace firebase.auth {
applyActionCode(code: string): Promise<any>;
checkActionCode(code: string): Promise<any>;
confirmPasswordReset(code: string, newPassword: string): Promise<any>;
createUserAndRetrieveDataWithEmailAndPassword(
email: string,
password: string
): Promise<any>;
createUserWithEmailAndPassword(
email: string,
password: string
Expand Down

0 comments on commit 9d00c6f

Please sign in to comment.