| 11 | } |
| 12 | |
| 13 | export interface AuthProvider { |
| 14 | getAuthStrategy(): Strategy<ProviderUser, any> |
| 15 | handleMockAction(request: Request): Promise<void> |
| 16 | resolveConnectionData( |
| 17 | providerId: string, |
| 18 | options?: { timings?: Timings }, |
| 19 | ): Promise<{ |
| 20 | displayName: string |
| 21 | link?: string | null |
| 22 | }> |
| 23 | } |
| 24 | |
| 25 | export const normalizeEmail = (s: string) => s.toLowerCase() |
| 26 |
no outgoing calls
no test coverage detected