This commit is contained in:
2025-09-09 00:15:08 +00:00
parent 0cce0322a1
commit fd34eb370f
30 changed files with 1953 additions and 35881 deletions

19
types/next-auth.d.ts vendored Normal file
View File

@@ -0,0 +1,19 @@
import { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: {
registerCode?: string | null;
registerCodeDate?: string | null;
} & DefaultSession["user"];
}
}
declare module "next-auth/jwt" {
interface JWT {
registerCode?: string | null;
registerCodeDate?: string | null;
}
}