UNPKG

@inertiapixel/nextjs-auth

Version:

Authentication system for Next.js. Supports credentials and social login, JWT token management, and lifecycle hooks — designed to integrate with nodejs-auth for full-stack MERN apps.

5 lines (4 loc) 232 B
import { FC } from 'react'; import { AuthContextType, AuthProviderProps } from '../types'; export declare const AuthContext: import("react").Context<AuthContextType | null>; export declare const AuthProvider: FC<AuthProviderProps>;