[auth][types] misc deprecation removals

This commit is contained in:
Salakar
2018-09-25 16:24:32 +01:00
parent a3bfcf58d8
commit 78c0c0ca64

6
src/index.d.ts vendored
View File

@@ -789,8 +789,6 @@ declare module 'react-native-firebase' {
*/
getIdToken(forceRefresh?: boolean): Promise<string>;
getToken(forceRefresh?: boolean): Promise<string>;
/**
* @deprecated
* @param credential
@@ -1142,9 +1140,9 @@ declare module 'react-native-firebase' {
checkActionCode(code: string): Promise<ActionCodeInfo>;
/**
* Returns a list of authentication providers that can be used to sign in a given user (identified by its main email address).
* Returns a list of authentication methods that can be used to sign in a given user (identified by its main email address).
*/
fetchProvidersForEmail(email: string): Promise<Array<string>>;
fetchSignInMethodsForEmail(email: string): Promise<Array<string>>;
verifyPasswordResetCode(code: string): Promise<string>;