@@ -20,7 +20,7 @@ export interface ActionCodeInfo {
2020 multiFactorInfo? : MultiFactorInfo | null ;
2121 previousEmail? : string | null ;
2222 };
23- operation: typeof ActionCodeOperation [keyof typeof ActionCodeOperation ];
23+ operation: ( typeof ActionCodeOperation ) [keyof typeof ActionCodeOperation ];
2424}
2525
2626// @public
@@ -456,21 +456,21 @@ export function multiFactor(user: User): MultiFactorUser;
456456
457457// @public
458458export interface MultiFactorAssertion {
459- readonly factorId: typeof FactorId [keyof typeof FactorId ];
459+ readonly factorId: ( typeof FactorId ) [keyof typeof FactorId ];
460460}
461461
462462// @public
463463export interface MultiFactorError extends AuthError {
464464 readonly customData: AuthError [' customData' ] & {
465- readonly operationType: typeof OperationType [keyof typeof OperationType ];
465+ readonly operationType: ( typeof OperationType ) [keyof typeof OperationType ];
466466 };
467467}
468468
469469// @public
470470export interface MultiFactorInfo {
471471 readonly displayName? : string | null ;
472472 readonly enrollmentTime: string ;
473- readonly factorId: typeof FactorId [keyof typeof FactorId ];
473+ readonly factorId: ( typeof FactorId ) [keyof typeof FactorId ];
474474 readonly uid: string ;
475475}
476476
@@ -844,7 +844,7 @@ export interface User extends UserInfo {
844844
845845// @public
846846export interface UserCredential {
847- operationType: typeof OperationType [keyof typeof OperationType ];
847+ operationType: ( typeof OperationType ) [keyof typeof OperationType ];
848848 providerId: string | null ;
849849 user: User ;
850850}
0 commit comments