Skip to content

Commit 8d32cf0

Browse files
authored
Merge c3776b6 into 541944b
2 parents 541944b + c3776b6 commit 8d32cf0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages-exp/auth-types-exp/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -982,12 +982,12 @@ export abstract class MultiFactorResolver {
982982
* The list of hints for the second factors needed to complete the sign-in for the current
983983
* session.
984984
*/
985-
hints: MultiFactorInfo[];
985+
readonly hints: MultiFactorInfo[];
986986
/**
987987
* The session identifier for the current sign-in flow, which can be used to complete the second
988988
* factor sign-in.
989989
*/
990-
session: MultiFactorSession;
990+
readonly session: MultiFactorSession;
991991
/**
992992
* A helper function to help users complete sign in with a second factor using an
993993
* {@link MultiFactorAssertion} confirming the user successfully completed the second factor
@@ -1314,7 +1314,7 @@ export interface UserCredential {
13141314
/**
13151315
* The provider which was used to authenticate the user.
13161316
*/
1317-
providerId: ProviderId | null;
1317+
providerId: string | null;
13181318
/**
13191319
* The type of operation which was used to authenticate the user (such as sign-in or link).
13201320
*/
@@ -1383,7 +1383,7 @@ export interface AdditionalUserInfo {
13831383
/**
13841384
* Identifier for the provider used to authenticate this user.
13851385
*/
1386-
readonly providerId: ProviderId | null;
1386+
readonly providerId: string | null;
13871387
/**
13881388
* The username if the provider is GitHub or Twitter.
13891389
*/

0 commit comments

Comments
 (0)