import type { Provider } from "../lib/social-providers" import type { AuthClient } from "./auth-client" export type GenericOAuthOptions = { /** * Custom OAuth Providers * @default [] */ providers: Provider[] /** * Custom generic OAuth sign in function */ signIn?: ( params: Parameters[0] ) => Promise }