Files
chinese-family-tree-2/types/next-auth.d.ts
T
freedakgmail fd9c064749 0.3.0.0
2025-11-30 09:16:43 +08:00

27 lines
391 B
TypeScript

import "next-auth"
declare module "next-auth" {
interface Session {
user: {
id: string
email: string
name?: string | null
hasSeenHelp: boolean
}
}
interface User {
id: string
email: string
name?: string | null
hasSeenHelp: boolean
}
}
declare module "next-auth/jwt" {
interface JWT {
id: string
hasSeenHelp: boolean
}
}