Files
Shifted/types/next-auth.d.ts
2026-02-10 01:14:19 +00:00

16 lines
238 B
TypeScript

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