@@ -82,7 +82,6 @@ export function applyActionCode(auth: Auth, oobCode: string): Promise<void>;
82
82
export interface Auth {
83
83
readonly config: Config ;
84
84
readonly currentUser: User | null ;
85
- // Warning: (ae-forgotten-export) The symbol "EmulatorConfig" needs to be exported by the entry point index.d.ts
86
85
readonly emulatorConfig: EmulatorConfig | null ;
87
86
languageCode: string | null ;
88
87
readonly name: string ;
@@ -328,6 +327,16 @@ export class EmailAuthProvider implements AuthProvider {
328
327
readonly providerId: " password" ;
329
328
}
330
329
330
+ // @public
331
+ export interface EmulatorConfig {
332
+ readonly host: string ;
333
+ readonly options: {
334
+ readonly disableWarnings: boolean ;
335
+ };
336
+ readonly port: number | null ;
337
+ readonly protocol: string ;
338
+ }
339
+
331
340
export { ErrorFn }
332
341
333
342
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
@@ -463,6 +472,8 @@ export interface MultiFactorUser {
463
472
unenroll(option : MultiFactorInfo | string ): Promise <void >;
464
473
}
465
474
475
+ export { NextFn }
476
+
466
477
// @public
467
478
export type NextOrObserver <T > = NextFn <T | null > | Observer <T | null >;
468
479
@@ -634,12 +645,17 @@ export function reauthenticateWithPopup(user: User, provider: AuthProvider, reso
634
645
// @public
635
646
export function reauthenticateWithRedirect(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <never >;
636
647
648
+ // @public
649
+ export interface RecaptchaParameters {
650
+ // (undocumented)
651
+ [key : string ]: any ;
652
+ }
653
+
637
654
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
638
655
//
639
656
// @public
640
657
export class RecaptchaVerifier implements ApplicationVerifierInternal {
641
- // Warning: (ae-forgotten-export) The symbol "Parameters" needs to be exported by the entry point index.d.ts
642
- constructor (containerOrId : HTMLElement | string , parameters : Parameters_2 , authExtern : Auth );
658
+ constructor (containerOrId : HTMLElement | string , parameters : RecaptchaParameters , authExtern : Auth );
643
659
clear(): void ;
644
660
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
645
661
//
0 commit comments