@@ -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.doc. d.ts
107
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
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
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.doc. d.ts
113
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
114
114
//
115
115
// @internal (undocumented)
116
116
_linkToIdToken(_auth : AuthInternal , _idToken : string ): Promise <IdTokenResponse >;
@@ -283,9 +283,6 @@ 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
-
289
286
// @public
290
287
export function createUserWithEmailAndPassword(auth : Auth , email : string , password : string ): Promise <UserCredential >;
291
288
@@ -349,7 +346,7 @@ export interface EmulatorConfig {
349
346
350
347
export { ErrorFn }
351
348
352
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
349
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
353
350
//
354
351
// @public
355
352
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -384,9 +381,6 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
384
381
// @public
385
382
export function getMultiFactorResolver(auth : Auth , error : MultiFactorError ): MultiFactorResolver ;
386
383
387
- // @public
388
- export function getReactNativePersistence(storage : ReactNativeAsyncStorage ): Persistence ;
389
-
390
384
// @public
391
385
export function getRedirectResult(auth : Auth , resolver ? : PopupRedirectResolver ): Promise <UserCredential | null >;
392
386
@@ -496,7 +490,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
496
490
export class OAuthCredential extends AuthCredential {
497
491
accessToken? : string ;
498
492
static fromJSON(json : string | object ): OAuthCredential | null ;
499
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
493
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
500
494
//
501
495
// @internal (undocumented)
502
496
static _fromParams(params : OAuthCredentialParams ): OAuthCredential ;
@@ -574,7 +568,7 @@ export class PhoneAuthCredential extends AuthCredential {
574
568
_getReauthenticationResolver(auth : AuthInternal ): Promise <IdTokenResponse >;
575
569
// @internal (undocumented)
576
570
_linkToIdToken(auth : AuthInternal , idToken : string ): Promise <IdTokenResponse >;
577
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
571
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
578
572
//
579
573
// @internal (undocumented)
580
574
_makeVerificationRequest(): SignInWithPhoneNumberRequest ;
@@ -653,9 +647,6 @@ export interface ReactNativeAsyncStorage {
653
647
setItem(key : string , value : string ): Promise <void >;
654
648
}
655
649
656
- // @public
657
- export const reactNativeLocalPersistence: Persistence ;
658
-
659
650
// @public
660
651
export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
661
652
@@ -674,13 +665,13 @@ export interface RecaptchaParameters {
674
665
[key : string ]: any ;
675
666
}
676
667
677
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
668
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
678
669
//
679
670
// @public
680
671
export class RecaptchaVerifier implements ApplicationVerifierInternal {
681
672
constructor (containerOrId : HTMLElement | string , parameters : RecaptchaParameters , authExtern : Auth );
682
673
clear(): void ;
683
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
674
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
684
675
//
685
676
// @internal (undocumented)
686
677
readonly _recaptchaLoader: ReCaptchaLoader ;
@@ -694,7 +685,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
694
685
// @public
695
686
export function reload(user : User ): Promise <void >;
696
687
697
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
688
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
698
689
//
699
690
// @public
700
691
export class SAMLAuthProvider extends FederatedAuthProvider {
0 commit comments