Initial commit

This commit is contained in:
2026-03-27 19:35:14 +01:00
commit 38581b88a4
68 changed files with 12137 additions and 0 deletions

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

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