Files
workout-cool/nextauth.d.ts
T
2025-06-11 15:23:25 +02:00

14 lines
301 B
TypeScript

/* eslint-disable @typescript-eslint/consistent-type-definitions */
import type { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: DefaultSession["user"] & {
id: string;
email: string;
name?: string;
image?: string;
};
}
}