Files
altbin.dev/types/next-auth.d.ts
T
2025-08-20 14:14:33 +02:00

16 lines
240 B
TypeScript

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