auth, trips and join trips

This commit is contained in:
2026-04-16 14:51:54 +07:00
parent de0d1c5413
commit 237caad488
49 changed files with 11343 additions and 334 deletions
+18
View File
@@ -0,0 +1,18 @@
import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
name: string;
email: string;
image?: string | null;
};
}
}
declare module "next-auth/jwt" {
interface JWT {
id: string;
}
}