@@ -106,14 +106,14 @@ export class AuthCredential {
106
106
protected constructor (
107
107
providerId : string ,
108
108
signInMethod : string );
109
- // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
110
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
109
+ // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc. d.ts
110
+ // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
111
111
//
112
112
// @internal (undocumented)
113
113
_getIdTokenResponse(_auth : AuthInternal ): Promise <PhoneOrOauthTokenResponse >;
114
114
// @internal (undocumented)
115
115
_getReauthenticationResolver(_auth : AuthInternal ): Promise <IdTokenResponse >;
116
- // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
116
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc. d.ts
117
117
//
118
118
// @internal (undocumented)
119
119
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -299,6 +299,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
299
299
disableWarnings: boolean ;
300
300
}): void ;
301
301
302
+ // @public
303
+ export const cordovaPopupRedirectResolver: PopupRedirectResolver ;
304
+
302
305
// @public
303
306
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
304
307
@@ -362,7 +365,7 @@ export interface EmulatorConfig {
362
365
363
366
export { ErrorFn }
364
367
365
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
368
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
366
369
//
367
370
// @public
368
371
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -398,6 +401,9 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
398
401
// @public
399
402
export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
400
403
404
+ // @public
405
+ export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
406
+
401
407
// @public
402
408
export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
403
409
@@ -510,7 +516,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
510
516
export class OAuthCredential extends AuthCredential {
511
517
accessToken? : string ;
512
518
static fromJSON(json : string | object ): OAuthCredential | null ;
513
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
519
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
514
520
//
515
521
// @internal (undocumented)
516
522
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -615,7 +621,7 @@ export class PhoneAuthCredential extends AuthCredential {
615
621
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
616
622
// @internal (undocumented)
617
623
_linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
618
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
624
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
619
625
//
620
626
// @internal (undocumented)
621
627
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -712,13 +718,13 @@ export interface RecaptchaParameters {
712
718
[key : string ]: any ;
713
719
}
714
720
715
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
721
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
716
722
//
717
723
// @public
718
724
export class RecaptchaVerifier implements ApplicationVerifierInternal {
719
725
constructor (authExtern : Auth , containerOrId : HTMLElement | string , parameters ? : RecaptchaParameters );
720
726
clear(): void ;
721
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
727
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
722
728
//
723
729
// @internal (undocumented)
724
730
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -735,7 +741,7 @@ export function reload(user: User): Promise<void>;
735
741
// @public
736
742
export function revokeAccessToken(auth : Auth , token : string ): Promise <void >;
737
743
738
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
744
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
739
745
//
740
746
// @public
741
747
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -816,13 +822,13 @@ export class TotpSecret {
816
822
readonly codeIntervalSeconds: number ;
817
823
readonly codeLength: number ;
818
824
readonly enrollmentCompletionDeadline: string ;
819
- // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.d.ts
825
+ // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.doc. d.ts
820
826
//
821
827
// @internal (undocumented)
822
828
static _fromStartTotpMfaEnrollmentResponse(response : StartTotpMfaEnrollmentResponse , auth : AuthInternal ): TotpSecret ;
823
829
generateQrCodeUrl(accountName ? : string , issuer ? : string ): string ;
824
830
readonly hashingAlgorithm: string ;
825
- // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.d.ts
831
+ // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.doc. d.ts
826
832
//
827
833
// @internal (undocumented)
828
834
_makeTotpVerificationInfo(otp : string ): TotpVerificationInfo ;
0 commit comments