@@ -80,6 +80,7 @@ export function applyActionCode(auth: Auth, oobCode: string): Promise<void>;
80
80
81
81
// @public
82
82
export interface Auth {
83
+ readonly app: FirebaseApp;
83
84
readonly config: Config;
84
85
readonly currentUser: User | null;
85
86
readonly emulatorConfig: EmulatorConfig | null;
@@ -101,14 +102,14 @@ export class AuthCredential {
101
102
protected constructor(
102
103
providerId: string,
103
104
signInMethod: string);
104
- // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc. d.ts
105
- // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc. d.ts
105
+ // Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
106
+ // Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
106
107
//
107
108
// @internal (undocumented)
108
109
_getIdTokenResponse(_auth: AuthInternal): Promise<PhoneOrOauthTokenResponse>;
109
110
// @internal (undocumented)
110
111
_getReauthenticationResolver(_auth: AuthInternal): Promise<IdTokenResponse>;
111
- // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc. d.ts
112
+ // Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
112
113
//
113
114
// @internal (undocumented)
114
115
_linkToIdToken(_auth: AuthInternal, _idToken: string): Promise<IdTokenResponse>;
@@ -276,9 +277,6 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
276
277
disableWarnings: boolean;
277
278
}): void;
278
279
279
- // @public
280
- export const cordovaPopupRedirectResolver: PopupRedirectResolver;
281
-
282
280
// @public
283
281
export function createUserWithEmailAndPassword(auth: Auth, email: string, password: string): Promise<UserCredential>;
284
282
@@ -342,7 +340,7 @@ export interface EmulatorConfig {
342
340
343
341
export { ErrorFn }
344
342
345
- // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc. d.ts
343
+ // Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
346
344
//
347
345
// @public
348
346
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -484,7 +482,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
484
482
export class OAuthCredential extends AuthCredential {
485
483
accessToken?: string;
486
484
static fromJSON(json: string | object): OAuthCredential | null;
487
- // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc. d.ts
485
+ // Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
488
486
//
489
487
// @internal (undocumented)
490
488
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
@@ -563,7 +561,7 @@ export class PhoneAuthCredential extends AuthCredential {
563
561
_getReauthenticationResolver(auth: AuthInternal): Promise<IdTokenResponse>;
564
562
// @internal (undocumented)
565
563
_linkToIdToken(auth: AuthInternal, idToken: string): Promise<IdTokenResponse>;
566
- // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc. d.ts
564
+ // Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
567
565
//
568
566
// @internal (undocumented)
569
567
_makeVerificationRequest(): SignInWithPhoneNumberRequest;
@@ -636,9 +634,6 @@ export interface ReactNativeAsyncStorage {
636
634
setItem(key: string, value: string): Promise<void>;
637
635
}
638
636
639
- // @public
640
- export const reactNativeLocalPersistence: Persistence;
641
-
642
637
// @public
643
638
export function reauthenticateWithCredential(user: User, credential: AuthCredential): Promise<UserCredential>;
644
639
@@ -657,13 +652,13 @@ export interface RecaptchaParameters {
657
652
[key: string]: any;
658
653
}
659
654
660
- // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc. d.ts
655
+ // Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
661
656
//
662
657
// @public
663
658
export class RecaptchaVerifier implements ApplicationVerifierInternal {
664
659
constructor(containerOrId: HTMLElement | string, parameters: RecaptchaParameters, authExtern: Auth);
665
660
clear(): void;
666
- // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc. d.ts
661
+ // Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
667
662
//
668
663
// @internal (undocumented)
669
664
readonly _recaptchaLoader: ReCaptchaLoader;
@@ -677,7 +672,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
677
672
// @public
678
673
export function reload(user: User): Promise<void>;
679
674
680
- // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc. d.ts
675
+ // Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
681
676
//
682
677
// @public
683
678
export class SAMLAuthProvider extends FederatedAuthProvider {
0 commit comments