@@ -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
@@ -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 ;
@@ -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 {
@@ -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