@@ -416,7 +416,7 @@ export interface ActionCodeInfo {
416416 /**
417417 * The type of operation that generated the action code.
418418 */
419- operation : typeof ActionCodeOperationMap [ keyof typeof ActionCodeOperationMap ] ;
419+ operation : ( typeof ActionCodeOperationMap ) [ keyof typeof ActionCodeOperationMap ] ;
420420}
421421
422422/**
@@ -589,7 +589,7 @@ export interface ConfirmationResult {
589589 */
590590export interface MultiFactorAssertion {
591591 /** The identifier of the second factor. */
592- readonly factorId : typeof FactorIdMap [ keyof typeof FactorIdMap ] ;
592+ readonly factorId : ( typeof FactorIdMap ) [ keyof typeof FactorIdMap ] ;
593593}
594594
595595/**
@@ -629,7 +629,7 @@ export interface MultiFactorError extends AuthError {
629629 /**
630630 * The type of operation (sign-in, linking, or re-authentication) that raised the error.
631631 */
632- readonly operationType : typeof OperationTypeMap [ keyof typeof OperationTypeMap ] ;
632+ readonly operationType : ( typeof OperationTypeMap ) [ keyof typeof OperationTypeMap ] ;
633633 } ;
634634}
635635
@@ -646,7 +646,7 @@ export interface MultiFactorInfo {
646646 /** The enrollment date of the second factor formatted as a UTC string. */
647647 readonly enrollmentTime : string ;
648648 /** The identifier of the second factor. */
649- readonly factorId : typeof FactorIdMap [ keyof typeof FactorIdMap ] ;
649+ readonly factorId : ( typeof FactorIdMap ) [ keyof typeof FactorIdMap ] ;
650650}
651651
652652/**
@@ -1049,7 +1049,7 @@ export interface UserCredential {
10491049 /**
10501050 * The type of operation which was used to authenticate the user (such as sign-in or link).
10511051 */
1052- operationType : typeof OperationTypeMap [ keyof typeof OperationTypeMap ] ;
1052+ operationType : ( typeof OperationTypeMap ) [ keyof typeof OperationTypeMap ] ;
10531053}
10541054
10551055/**
0 commit comments