Files

16 lines
240 B
TypeScript
Raw Permalink Normal View History

2025-08-20 14:14:33 +02:00
import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
name?: string | null;
email?: string | null;
image?: string | null;
};
}
interface User {
id: string;
}
}