UNPKG

@adonis-agora/authkit-react

Version:

Frontend ergonomics over AuthKit for AdonisJS + Inertia + React apps: a typed useAuth() hook, role-gating hooks and gating components.

7 lines (6 loc) 187 B
import type { AuthUser } from '../types.js'; export interface UseUserResult { user: AuthUser | null; isAuthenticated: boolean; } export declare function useUser(): UseUserResult;