@@ -445,7 +445,7 @@ export function isSignInWithEmailLink(auth: Auth, emailLink: string): boolean;
445
445
export function linkWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
446
446
447
447
// @public
448
- export function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
448
+ export function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
449
449
450
450
// @public
451
451
export function linkWithPopup(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
@@ -625,7 +625,7 @@ export class PhoneAuthProvider {
625
625
static readonly PHONE_SIGN_IN_METHOD: ' phone' ;
626
626
static readonly PROVIDER_ID: ' phone' ;
627
627
readonly providerId: " phone" ;
628
- verifyPhoneNumber(phoneOptions : PhoneInfoOptions | string , applicationVerifier : ApplicationVerifier ): Promise <string >;
628
+ verifyPhoneNumber(phoneOptions : PhoneInfoOptions | string , applicationVerifier ? : ApplicationVerifier ): Promise <string >;
629
629
}
630
630
631
631
// @public
@@ -692,7 +692,7 @@ export interface ReactNativeAsyncStorage {
692
692
export function reauthenticateWithCredential(user : User , credential : AuthCredential ): Promise <UserCredential >;
693
693
694
694
// @public
695
- export function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
695
+ export function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
696
696
697
697
// @public
698
698
export function reauthenticateWithPopup(user : User , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
@@ -778,7 +778,7 @@ export function signInWithEmailAndPassword(auth: Auth, email: string, password:
778
778
export function signInWithEmailLink(auth : Auth , email : string , emailLink ? : string ): Promise <UserCredential >;
779
779
780
780
// @public
781
- export function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
781
+ export function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
782
782
783
783
// @public
784
784
export function signInWithPopup(auth : Auth , provider : AuthProvider , resolver ? : PopupRedirectResolver ): Promise <UserCredential >;
0 commit comments