Files
setrip/types/next-auth.d.ts
T
2026-04-16 14:51:54 +07:00

19 lines
259 B
TypeScript

import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
name: string;
email: string;
image?: string | null;
};
}
}
declare module "next-auth/jwt" {
interface JWT {
id: string;
}
}