Files
aystone-manager/types/next-auth.d.ts
T

16 lines
240 B
TypeScript
Raw Normal View History

2025-07-29 05:15: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;
}
}