@@ -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.doc. d.ts
108
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
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
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.doc. d.ts
114
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
115
115
//
116
116
// @internal (undocumented)
117
117
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -293,9 +293,6 @@ 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
-
299
296
// @public
300
297
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
301
298
@@ -359,7 +356,7 @@ export interface EmulatorConfig {
359
356
360
357
export { ErrorFn }
361
358
362
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
359
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
363
360
//
364
361
// @public
365
362
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -395,9 +392,6 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
395
392
// @public
396
393
export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
397
394
398
- // @public
399
- export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
400
-
401
395
// @public
402
396
export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
403
397
@@ -510,7 +504,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
510
504
export class OAuthCredential extends AuthCredential {
511
505
accessToken? : string ;
512
506
static fromJSON(json : string | object ): OAuthCredential | null ;
513
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
507
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
514
508
//
515
509
// @internal (undocumented)
516
510
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -615,7 +609,7 @@ export class PhoneAuthCredential extends AuthCredential {
615
609
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
616
610
// @internal (undocumented)
617
611
_linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
618
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
612
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
619
613
//
620
614
// @internal (undocumented)
621
615
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -712,13 +706,13 @@ export interface RecaptchaParameters {
712
706
[key : string ]: any ;
713
707
}
714
708
715
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
709
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
716
710
//
717
711
// @public
718
712
export class RecaptchaVerifier implements ApplicationVerifierInternal {
719
713
constructor (authExtern : Auth , containerOrId : HTMLElement | string , parameters ? : RecaptchaParameters );
720
714
clear(): void ;
721
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
715
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
722
716
//
723
717
// @internal (undocumented)
724
718
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -735,7 +729,7 @@ export function reload(user: User): Promise<void>;
735
729
// @public
736
730
export function revokeAccessToken(auth : Auth , token : string ): Promise <void >;
737
731
738
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
732
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
739
733
//
740
734
// @public
741
735
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -816,13 +810,13 @@ export class TotpSecret {
816
810
readonly codeIntervalSeconds: number ;
817
811
readonly codeLength: number ;
818
812
readonly enrollmentCompletionDeadline: string ;
819
- // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.doc. d.ts
813
+ // Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.d.ts
820
814
//
821
815
// @internal (undocumented)
822
816
static _fromStartTotpMfaEnrollmentResponse(response : StartTotpMfaEnrollmentResponse , auth : AuthInternal ): TotpSecret ;
823
817
generateQrCodeUrl(accountName ? : string , issuer ? : string ): string ;
824
818
readonly hashingAlgorithm: string ;
825
- // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.doc. d.ts
819
+ // Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.d.ts
826
820
//
827
821
// @internal (undocumented)
828
822
_makeTotpVerificationInfo(otp : string ): TotpVerificationInfo ;
0 commit comments