@@ -103,14 +103,14 @@ export class AuthCredential {
103103 protected constructor (
104104 providerId : string ,
105105 signInMethod : string );
106- // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
107- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
106+ // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc. d.ts
107+ // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
108108 //
109109 // @internal (undocumented)
110110 _getIdTokenResponse(_auth : AuthInternal ): Promise <PhoneOrOauthTokenResponse >;
111111 // @internal (undocumented)
112112 _getReauthenticationResolver(_auth : AuthInternal ): Promise <IdTokenResponse >;
113- // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
113+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc. d.ts
114114 //
115115 // @internal (undocumented)
116116 _linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -283,6 +283,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
283283 disableWarnings: boolean ;
284284}): void ;
285285
286+ // @public
287+ export const cordovaPopupRedirectResolver: PopupRedirectResolver ;
288+
286289// @public
287290export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
288291
@@ -346,7 +349,7 @@ export interface EmulatorConfig {
346349
347350export { ErrorFn }
348351
349- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
352+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
350353//
351354// @public
352355export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -381,6 +384,9 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
381384// @public
382385export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
383386
387+ // @public
388+ export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
389+
384390// @public
385391export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
386392
@@ -490,7 +496,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
490496export class OAuthCredential extends AuthCredential {
491497 accessToken? : string ;
492498 static fromJSON(json : string | object ): OAuthCredential | null ;
493- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
499+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
494500 //
495501 // @internal (undocumented)
496502 static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -568,7 +574,7 @@ export class PhoneAuthCredential extends AuthCredential {
568574 _getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
569575 // @internal (undocumented)
570576 _linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
571- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
577+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
572578 //
573579 // @internal (undocumented)
574580 _makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -647,6 +653,9 @@ export interface ReactNativeAsyncStorage {
647653 setItem(key : string , value : string ): Promise <void >;
648654}
649655
656+ // @public
657+ export const reactNativeLocalPersistence: Persistence ;
658+
650659// @public
651660export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
652661
@@ -665,13 +674,13 @@ export interface RecaptchaParameters {
665674 [key : string ]: any ;
666675}
667676
668- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
677+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
669678//
670679// @public
671680export class RecaptchaVerifier implements ApplicationVerifierInternal {
672681 constructor (containerOrId : HTMLElement | string , parameters : RecaptchaParameters , authExtern : Auth );
673682 clear(): void ;
674- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
683+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
675684 //
676685 // @internal (undocumented)
677686 readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -685,7 +694,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
685694// @public
686695export function reload(user : User ): Promise <void >;
687696
688- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
697+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
689698//
690699// @public
691700export class SAMLAuthProvider extends FederatedAuthProvider {
0 commit comments