Files
chinese-family-tree-2/types/next-auth.d.ts
T
freedakgmail e92884ae53 0.0.1.0
2025-11-23 03:07:39 +08:00

24 lines
314 B
TypeScript

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