| 2 | import type { BuiltInProviderType, ProviderType } from "../providers" |
| 3 | |
| 4 | export interface UseSessionOptions<R extends boolean> { |
| 5 | required: R |
| 6 | /** Defaults to `signIn` */ |
| 7 | onUnauthenticated?: () => void |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Util type that matches some strings literally, but allows any other string as well. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…