UNPKG

@inertiapixel/nextjs-auth

Version:

A reusable Next.js authentication package supporting credentials, OTP, and OAuth login.

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>;