UNPKG

next-auth

Version:

Authentication for Next.js

14 lines (13 loc) 361 B
import { OAuthConfig, OAuthUserConfig } from "."; export interface LineProfile { iss: string; sub: string; aud: string; exp: number; iat: number; amr: string[]; name: string; picture: string; user: any; } export default function LINE<P extends Record<string, any> = LineProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;