Initial commit from Create Next App

This commit is contained in:
Atakan Doğan Özban
2026-07-12 15:40:35 +02:00
commit 4f29120768
52 changed files with 10164 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id?: string;
name?: string | null;
email?: string | null;
image?: string | null;
plan?: string;
youtubeConnected?: boolean;
channelTitle?: string;
};
}
}
declare module "next-auth/jwt" {
interface JWT {
id?: string;
}
}