Index: auth.d.ts
===================================================================
--- auth.d.ts	(revision 41ea2cb8495988ee663f2ffda06ffc54a07e88cb)
+++ auth.d.ts	(revision 41ea2cb8495988ee663f2ffda06ffc54a07e88cb)
@@ -0,0 +1,17 @@
+import NextAuth from 'next-auth';
+
+declare module 'next-auth' {
+    interface Session {
+        user: {
+            id: string;
+            name: string;
+            email: string;
+        };
+    }
+
+    interface User {
+        id: string;
+        name: string;
+        email: string;
+    }
+}
