| 28 | type LiteralUnion<T extends U, U = string> = T | (U & Record<never, never>); |
| 29 | |
| 30 | interface ClientSafeProvider { |
| 31 | id: LiteralUnion<BuiltInProviderType>; |
| 32 | name: string; |
| 33 | type: ProviderType; |
| 34 | signinUrl: string; |
| 35 | callbackUrl: string; |
| 36 | } |
| 37 | |
| 38 | interface SignInOptions extends Record<string, unknown> { |
| 39 | callbackUrl?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected