@@ -20,7 +20,7 @@ export interface ActionCodeInfo {
20
20
multiFactorInfo? : MultiFactorInfo | null ;
21
21
previousEmail? : string | null ;
22
22
};
23
- operation: typeof ActionCodeOperation [keyof typeof ActionCodeOperation ];
23
+ operation: ( typeof ActionCodeOperation ) [keyof typeof ActionCodeOperation ];
24
24
}
25
25
26
26
// @public
@@ -456,21 +456,21 @@ export function multiFactor(user: User): MultiFactorUser;
456
456
457
457
// @public
458
458
export interface MultiFactorAssertion {
459
- readonly factorId: typeof FactorId [keyof typeof FactorId ];
459
+ readonly factorId: ( typeof FactorId ) [keyof typeof FactorId ];
460
460
}
461
461
462
462
// @public
463
463
export interface MultiFactorError extends AuthError {
464
464
readonly customData: AuthError [' customData' ] & {
465
- readonly operationType: typeof OperationType [keyof typeof OperationType ];
465
+ readonly operationType: ( typeof OperationType ) [keyof typeof OperationType ];
466
466
};
467
467
}
468
468
469
469
// @public
470
470
export interface MultiFactorInfo {
471
471
readonly displayName? : string | null ;
472
472
readonly enrollmentTime: string ;
473
- readonly factorId: typeof FactorId [keyof typeof FactorId ];
473
+ readonly factorId: ( typeof FactorId ) [keyof typeof FactorId ];
474
474
readonly uid: string ;
475
475
}
476
476
@@ -844,7 +844,7 @@ export interface User extends UserInfo {
844
844
845
845
// @public
846
846
export interface UserCredential {
847
- operationType: typeof OperationType [keyof typeof OperationType ];
847
+ operationType: ( typeof OperationType ) [keyof typeof OperationType ];
848
848
providerId: string | null ;
849
849
user: User ;
850
850
}
0 commit comments