@@ -104,14 +104,14 @@ export class AuthCredential {
104
104
protected constructor (
105
105
providerId : string ,
106
106
signInMethod : string );
107
- // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
108
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
107
+ // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc. d.ts
108
+ // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
109
109
//
110
110
// @internal (undocumented)
111
111
_getIdTokenResponse(_auth : AuthInternal ): Promise <PhoneOrOauthTokenResponse >;
112
112
// @internal (undocumented)
113
113
_getReauthenticationResolver(_auth : AuthInternal ): Promise <IdTokenResponse >;
114
- // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
114
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc. d.ts
115
115
//
116
116
// @internal (undocumented)
117
117
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -293,6 +293,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
293
293
disableWarnings: boolean ;
294
294
}): void ;
295
295
296
+ // @public
297
+ export const cordovaPopupRedirectResolver: PopupRedirectResolver ;
298
+
296
299
// @public
297
300
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
298
301
@@ -356,7 +359,7 @@ export interface EmulatorConfig {
356
359
357
360
export { ErrorFn }
358
361
359
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
362
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
360
363
//
361
364
// @public
362
365
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -392,6 +395,9 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
392
395
// @public
393
396
export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
394
397
398
+ // @public
399
+ export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
400
+
395
401
// @public
396
402
export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
397
403
@@ -445,7 +451,7 @@ export function isSignInWithEmailLink(auth: Auth, emailLink: string): boolean;
445
451
export function linkWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
446
452
447
453
// @public
448
- export function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
454
+ export function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
449
455
450
456
// @public
451
457
export function linkWithPopup(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
@@ -504,7 +510,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
504
510
export class OAuthCredential extends AuthCredential {
505
511
accessToken? : string ;
506
512
static fromJSON(json : string | object ): OAuthCredential | null ;
507
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
513
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
508
514
//
509
515
// @internal (undocumented)
510
516
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -609,7 +615,7 @@ export class PhoneAuthCredential extends AuthCredential {
609
615
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
610
616
// @internal (undocumented)
611
617
_linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
612
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
618
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
613
619
//
614
620
// @internal (undocumented)
615
621
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -625,7 +631,7 @@ export class PhoneAuthProvider {
625
631
static readonly PHONE_SIGN_IN_METHOD: ' phone' ;
626
632
static readonly PROVIDER_ID: ' phone' ;
627
633
readonly providerId: " phone" ;
628
- verifyPhoneNumber(phoneOptions : PhoneInfoOptions | string , applicationVerifier ? : ApplicationVerifier ): Promise <string >;
634
+ verifyPhoneNumber(phoneOptions : PhoneInfoOptions | string , applicationVerifier : ApplicationVerifier ): Promise <string >;
629
635
}
630
636
631
637
// @public
@@ -692,7 +698,7 @@ export interface ReactNativeAsyncStorage {
692
698
export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
693
699
694
700
// @public
695
- export function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
701
+ export function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
696
702
697
703
// @public
698
704
export function reauthenticateWithPopup(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
@@ -706,13 +712,13 @@ export interface RecaptchaParameters {
706
712
[key : string ]: any ;
707
713
}
708
714
709
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
715
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
710
716
//
711
717
// @public
712
718
export class RecaptchaVerifier implements ApplicationVerifierInternal {
713
719
constructor (authExtern : Auth , containerOrId : HTMLElement | string , parameters ? : RecaptchaParameters );
714
720
clear(): void ;
715
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
721
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
716
722
//
717
723
// @internal (undocumented)
718
724
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -729,7 +735,7 @@ export function reload(user: User): Promise<void>;
729
735
// @public
730
736
export function revokeAccessToken(auth : Auth , token : string ): Promise <void >;
731
737
732
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
738
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
733
739
//
734
740
// @public
735
741
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -778,7 +784,7 @@ export function signInWithEmailAndPassword(auth: Auth, email: string, password:
778
784
export function signInWithEmailLink(auth : Auth , email : string , emailLink ? : string ): Promise <UserCredential >;
779
785
780
786
// @public
781
- export function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
787
+ export function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
782
788
783
789
// @public
784
790
export function signInWithPopup(auth : Auth , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
@@ -810,13 +816,13 @@ export class TotpSecret {
810
816
readonly codeIntervalSeconds: number ;
811
817
readonly codeLength: number ;
812
818
readonly enrollmentCompletionDeadline: string ;
813
- // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.d.ts
819
+ // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.doc. d.ts
814
820
//
815
821
// @internal (undocumented)
816
822
static _fromStartTotpMfaEnrollmentResponse(response : StartTotpMfaEnrollmentResponse , auth : AuthInternal ): TotpSecret ;
817
823
generateQrCodeUrl(accountName ? : string , issuer ? : string ): string ;
818
824
readonly hashingAlgorithm: string ;
819
- // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.d.ts
825
+ // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.doc. d.ts
820
826
//
821
827
// @internal (undocumented)
822
828
_makeTotpVerificationInfo(otp : string ): TotpVerificationInfo ;
0 commit comments