@@ -103,14 +103,14 @@ export class AuthCredential {
103
103
protected constructor (
104
104
providerId : string ,
105
105
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
108
108
//
109
109
// @internal (undocumented)
110
110
_getIdTokenResponse(_auth : AuthInternal ): Promise <PhoneOrOauthTokenResponse >;
111
111
// @internal (undocumented)
112
112
_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
114
114
//
115
115
// @internal (undocumented)
116
116
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -283,6 +283,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
283
283
disableWarnings: boolean ;
284
284
}): void ;
285
285
286
+ // @public
287
+ export const cordovaPopupRedirectResolver: PopupRedirectResolver ;
288
+
286
289
// @public
287
290
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
288
291
@@ -346,7 +349,7 @@ export interface EmulatorConfig {
346
349
347
350
export { ErrorFn }
348
351
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
350
353
//
351
354
// @public
352
355
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -381,6 +384,9 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
381
384
// @public
382
385
export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
383
386
387
+ // @public
388
+ export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
389
+
384
390
// @public
385
391
export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
386
392
@@ -490,7 +496,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
490
496
export class OAuthCredential extends AuthCredential {
491
497
accessToken? : string ;
492
498
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
494
500
//
495
501
// @internal (undocumented)
496
502
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -568,7 +574,7 @@ export class PhoneAuthCredential extends AuthCredential {
568
574
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
569
575
// @internal (undocumented)
570
576
_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
572
578
//
573
579
// @internal (undocumented)
574
580
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -647,6 +653,9 @@ export interface ReactNativeAsyncStorage {
647
653
setItem(key : string , value : string ): Promise <void >;
648
654
}
649
655
656
+ // @public
657
+ export const reactNativeLocalPersistence: Persistence ;
658
+
650
659
// @public
651
660
export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
652
661
@@ -665,13 +674,13 @@ export interface RecaptchaParameters {
665
674
[key : string ]: any ;
666
675
}
667
676
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
669
678
//
670
679
// @public
671
680
export class RecaptchaVerifier implements ApplicationVerifierInternal {
672
681
constructor (containerOrId : HTMLElement | string , parameters : RecaptchaParameters , authExtern : Auth );
673
682
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
675
684
//
676
685
// @internal (undocumented)
677
686
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -685,7 +694,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
685
694
// @public
686
695
export function reload(user : User ): Promise <void >;
687
696
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
689
698
//
690
699
// @public
691
700
export class SAMLAuthProvider extends FederatedAuthProvider {
0 commit comments