( authMethod: AuthMethod, )
| 367 | } |
| 368 | |
| 369 | export function getAuthProvider( |
| 370 | authMethod: AuthMethod, |
| 371 | ): AuthProvider | undefined { |
| 372 | const info = authMethods[authMethod] as AuthMethodInfo; |
| 373 | return info.provider; |
| 374 | } |
| 375 | |
| 376 | export async function reauthenticate( |
| 377 | options: ReauthenticateOptions, |
no outgoing calls
no test coverage detected