Files
oms-website-nextjs/types/next-auth.d.ts
2025-04-21 20:59:37 +02:00

10 lines
164 B
TypeScript

import { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
} & DefaultSession["user"];
}
}