UNPKG

next-auth

Version:

Authentication for Next.js

9 lines (8 loc) 290 B
import { OAuthConfig, OAuthUserConfig } from "./oauth"; export interface GoogleProfile { sub: string; name: string; email: string; picture: string; } export default function Google<P extends Record<string, any> = GoogleProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;