File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -930,7 +930,7 @@ This method does not work in a Node.js environment or with [Auth](./auth.auth.md
930
930
<b >Signature:</b >
931
931
932
932
``` typescript
933
- export declare function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
933
+ export declare function signInWithPhoneNumber(auth : Auth , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
934
934
```
935
935
936
936
#### Parameters
@@ -1304,7 +1304,7 @@ This method does not work in a Node.js environment.
1304
1304
<b >Signature:</b >
1305
1305
1306
1306
``` typescript
1307
- export declare function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
1307
+ export declare function linkWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
1308
1308
```
1309
1309
1310
1310
#### Parameters
@@ -1457,7 +1457,7 @@ This method does not work in a Node.js environment or on any [User](./auth.user.
1457
1457
<b >Signature:</b >
1458
1458
1459
1459
``` typescript
1460
- export declare function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier : ApplicationVerifier ): Promise <ConfirmationResult >;
1460
+ export declare function reauthenticateWithPhoneNumber(user : User , phoneNumber : string , appVerifier ? : ApplicationVerifier ): Promise <ConfirmationResult >;
1461
1461
```
1462
1462
1463
1463
#### Parameters
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ Starts a phone number authentication flow by sending a verification code to the
203
203
<b >Signature:</b >
204
204
205
205
``` typescript
206
- verifyPhoneNumber (phoneOptions : PhoneInfoOptions | string , applicationVerifier : ApplicationVerifier ): Promise < string > ;
206
+ verifyPhoneNumber (phoneOptions : PhoneInfoOptions | string , applicationVerifier ? : ApplicationVerifier ): Promise < string > ;
207
207
```
208
208
209
209
#### Parameters
You can’t perform that action at this time.
0 commit comments