finance-calculator/types/next-auth.d.ts
2025-06-14 01:33:52 +08:00

12 lines
209 B
TypeScript

import NextAuth from "next-auth"
declare module "next-auth" {
interface Session {
user: {
id: string
name?: string | null
email?: string | null
image?: string | null
}
}
}