This commit is contained in:
freedakgmail
2025-11-23 03:07:39 +08:00
parent 626d7dddde
commit e92884ae53
679 changed files with 208175 additions and 1183474 deletions
+23
View File
@@ -0,0 +1,23 @@
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
}
}