@@ -485,7 +485,7 @@ declare namespace firebase {
485
485
linkWithRedirect ( provider : firebase . auth . AuthProvider ) : Promise < void > ;
486
486
metadata : firebase . auth . UserMetadata ;
487
487
/**
488
- * The {@link firebase.User.MultiFactor } object corresponding to the current user.
488
+ * The {@link firebase.User.MultiFactorUser } object corresponding to the current user.
489
489
* This is used to access all multi-factor properties and operations related to the
490
490
* current user.
491
491
*/
@@ -1964,7 +1964,7 @@ declare namespace firebase.auth {
1964
1964
* For the REVERT_SECOND_FACTOR_ADDITION action, which allows a user to unenroll
1965
1965
* a newly added second factor, this object contains a `multiFactorInfo` field with
1966
1966
* the information about the second factor. For phone second factor, the
1967
- * `multiFactorInfo` is a {@link firebase.auth.Auth. PhoneMultiFactorInfo} object,
1967
+ * `multiFactorInfo` is a {@link firebase.auth.PhoneMultiFactorInfo} object,
1968
1968
* which contains the phone number.
1969
1969
*/
1970
1970
data : {
@@ -3323,8 +3323,8 @@ declare namespace firebase.auth {
3323
3323
/**
3324
3324
* An authentication error.
3325
3325
* For method-specific error codes, refer to the specific methods in the
3326
- * documentation. For common error codes, check the reference below. Use {@link
3327
- * firebase.auth.Error# code} to get the specific error code. For a detailed
3326
+ * documentation. For common error codes, check the reference below. Use{@link
3327
+ * firebase.auth.Error. code} to get the specific error code. For a detailed
3328
3328
* message, use {@link firebase.auth.Error.message}.
3329
3329
* Errors with the code <strong>auth/account-exists-with-different-credential
3330
3330
* </strong> will have the additional fields <strong>email</strong> and <strong>
@@ -3452,7 +3452,7 @@ declare namespace firebase.auth {
3452
3452
phoneNumber ?: string ;
3453
3453
/**
3454
3454
* The tenant ID being used for sign-in/linking. If you use
3455
- * {@link firebase.auth.signInWithRedirect} to sign in, you have to
3455
+ * {@link firebase.auth.Auth. signInWithRedirect} to sign in, you have to
3456
3456
* set the tenant ID on Auth instanace again as the tenant ID is not
3457
3457
* persisted after redirection.
3458
3458
*/
@@ -7534,18 +7534,18 @@ declare namespace firebase.storage {
7534
7534
* @param url A URL in the form: <br />
7535
7535
* 1) a gs:// URL, for example `gs://bucket/files/image.png` <br />
7536
7536
* 2) a download URL taken from object metadata. <br />
7537
- * @see {@link firebase.storage.FullMetadata.prototype. downloadURLs }
7537
+ * @see {@link firebase.storage.FullMetadata.downloadURLs }
7538
7538
* @return A reference for the given URL.
7539
7539
*/
7540
7540
refFromURL ( url : string ) : firebase . storage . Reference ;
7541
7541
/**
7542
7542
* @param time The new maximum operation retry time in milliseconds.
7543
- * @see {@link firebase.storage.Storage.prototype. maxOperationRetryTime }
7543
+ * @see {@link firebase.storage.Storage.maxOperationRetryTime }
7544
7544
*/
7545
7545
setMaxOperationRetryTime ( time : number ) : any ;
7546
7546
/**
7547
7547
* @param time The new maximum upload retry time in milliseconds.
7548
- * @see {@link firebase.storage.Storage.prototype. maxUploadRetryTime }
7548
+ * @see {@link firebase.storage.Storage.maxUploadRetryTime }
7549
7549
*/
7550
7550
setMaxUploadRetryTime ( time : number ) : any ;
7551
7551
}
@@ -7593,7 +7593,7 @@ declare namespace firebase.storage {
7593
7593
/**
7594
7594
* An event that is triggered on a task.
7595
7595
* @enum {string}
7596
- * @see {@link firebase.storage.UploadTask.prototype. on }
7596
+ * @see {@link firebase.storage.UploadTask.on }
7597
7597
*/
7598
7598
type TaskEvent = string ;
7599
7599
var TaskEvent : {
0 commit comments