File tree 2 files changed +6
-2
lines changed
packages-exp/auth-exp/src/core
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,9 @@ export class OAuthProvider implements AuthProvider {
150
150
}
151
151
152
152
/** An internal credential method that accepts more permissive options */
153
- private _credential ( params : OAuthCredentialOptions | OAuthCredentialParams ) : OAuthCredential {
153
+ private _credential (
154
+ params : OAuthCredentialOptions | OAuthCredentialParams
155
+ ) : OAuthCredential {
154
156
_assert ( params . idToken || params . accessToken , AuthErrorCode . ARGUMENT_ERROR ) ;
155
157
// For OAuthCredential, sign in method is same as providerId.
156
158
return OAuthCredential . _fromParams ( {
Original file line number Diff line number Diff line change @@ -81,7 +81,9 @@ export class UserCredentialImpl
81
81
}
82
82
}
83
83
84
- function providerIdForResponse ( response : IdTokenResponse ) : ProviderId | string | null {
84
+ function providerIdForResponse (
85
+ response : IdTokenResponse
86
+ ) : ProviderId | string | null {
85
87
if ( response . providerId ) {
86
88
return response . providerId ;
87
89
}
You can’t perform that action at this time.
0 commit comments