@@ -82,7 +82,7 @@ export function applyActionCode(auth: Auth, oobCode: string): Promise<void>;
82
82
export interface Auth {
83
83
readonly config: Config ;
84
84
readonly currentUser: User | null ;
85
- // Warning: (ae-forgotten-export) The symbol "EmulatorConfig" needs to be exported by the entry point index.d.ts
85
+ // Warning: (ae-forgotten-export) The symbol "EmulatorConfig" needs to be exported by the entry point index.doc. d.ts
86
86
readonly emulatorConfig: EmulatorConfig | null ;
87
87
languageCode: string | null ;
88
88
readonly name: string ;
@@ -102,14 +102,14 @@ export class AuthCredential {
102
102
protected constructor (
103
103
providerId : string ,
104
104
signInMethod : string );
105
- // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
106
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
105
+ // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc. d.ts
106
+ // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
107
107
//
108
108
// @internal (undocumented)
109
109
_getIdTokenResponse(_auth : AuthInternal ): Promise <PhoneOrOauthTokenResponse >;
110
110
// @internal (undocumented)
111
111
_getReauthenticationResolver(_auth : AuthInternal ): Promise <IdTokenResponse >;
112
- // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
112
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc. d.ts
113
113
//
114
114
// @internal (undocumented)
115
115
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -277,6 +277,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
277
277
disableWarnings: boolean ;
278
278
}): void ;
279
279
280
+ // @public
281
+ export const cordovaPopupRedirectResolver: PopupRedirectResolver ;
282
+
280
283
// @public
281
284
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
282
285
@@ -330,7 +333,7 @@ export class EmailAuthProvider implements AuthProvider {
330
333
331
334
export { ErrorFn }
332
335
333
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
336
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
334
337
//
335
338
// @public
336
339
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -470,7 +473,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
470
473
export class OAuthCredential extends AuthCredential {
471
474
accessToken? : string ;
472
475
static fromJSON(json : string | object ): OAuthCredential | null ;
473
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
476
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
474
477
//
475
478
// @internal (undocumented)
476
479
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -549,7 +552,7 @@ export class PhoneAuthCredential extends AuthCredential {
549
552
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
550
553
// @internal (undocumented)
551
554
_linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
552
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
555
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
553
556
//
554
557
// @internal (undocumented)
555
558
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -622,6 +625,9 @@ export interface ReactNativeAsyncStorage {
622
625
setItem(key : string , value : string ): Promise <void >;
623
626
}
624
627
628
+ // @public
629
+ export const reactNativeLocalPersistence: Persistence ;
630
+
625
631
// @public
626
632
export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
627
633
@@ -634,14 +640,14 @@ export function reauthenticateWithPopup(user: User, provider: AuthProvider, reso
634
640
// @public
635
641
export function reauthenticateWithRedirect(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <never >;
636
642
637
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
643
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
638
644
//
639
645
// @public
640
646
export class RecaptchaVerifier implements ApplicationVerifierInternal {
641
- // Warning: (ae-forgotten-export) The symbol "Parameters" needs to be exported by the entry point index.d.ts
647
+ // Warning: (ae-forgotten-export) The symbol "Parameters" needs to be exported by the entry point index.doc. d.ts
642
648
constructor (containerOrId : HTMLElement | string , parameters : Parameters_2 , authExtern : Auth );
643
649
clear(): void ;
644
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
650
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
645
651
//
646
652
// @internal (undocumented)
647
653
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -655,7 +661,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
655
661
// @public
656
662
export function reload(user : User ): Promise <void >;
657
663
658
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
664
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
659
665
//
660
666
// @public
661
667
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -799,4 +805,6 @@ export function verifyBeforeUpdateEmail(user: User, newEmail: string, actionCode
799
805
export function verifyPasswordResetCode(auth : Auth , code : string ): Promise <string >;
800
806
801
807
808
+ // (No @packageDocumentation comment for this package)
809
+
802
810
```
0 commit comments