Files
songs2yt/types/next-auth.d.ts
T
2026-07-17 02:23:59 +02:00

22 lines
361 B
TypeScript

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;
}
}