@@ -121,20 +121,20 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
121
121
* @public
122
122
*/
123
123
export interface AuthError extends FirebaseError {
124
- /** The detailed Data of the Firebase Auth error. */
124
+ /** Details about the Firebase Auth error. */
125
125
readonly customData : {
126
126
/** The name of the Firebase App which triggered this error. */
127
127
readonly appName : string ;
128
- /** The email of the user's account, used for sign-in/ linking. */
128
+ /** The email address of the user's account, used for sign-in and linking. */
129
129
readonly email ?: string ;
130
- /** The phone number of the user's account, used for sign-in/ linking. */
130
+ /** The phone number of the user's account, used for sign-in and linking. */
131
131
readonly phoneNumber ?: string ;
132
132
/**
133
- * The tenant ID being used for sign-in/ linking.
133
+ * The tenant ID being used for sign-in and linking.
134
134
*
135
135
* @remarks
136
136
* If you use {@link signInWithRedirect} to sign in,
137
- * you have to set the tenant ID on {@link Auth} instance again as the tenant ID is not persisted
137
+ * you have to set the tenant ID on the {@link Auth} instance again as the tenant ID is not persisted
138
138
* after redirection.
139
139
*/
140
140
readonly tenantId ?: string ;
@@ -603,10 +603,10 @@ export interface MultiFactorAssertion {
603
603
* @public
604
604
*/
605
605
export interface MultiFactorError extends AuthError {
606
- /** The detailed Data of the MultiFactorError. */
606
+ /** Details about the MultiFactorError. */
607
607
readonly customData : AuthError [ 'customData' ] & {
608
608
/**
609
- * The type of operation (e.g., sign-in, link , or reauthenticate) during which the error was raised .
609
+ * The type of operation (sign-in, linking , or re-authentication) that raised the error.
610
610
*/
611
611
readonly operationType : typeof OperationTypeMap [ keyof typeof OperationTypeMap ] ;
612
612
}
0 commit comments