el.xwx.moe/types/next-auth.d.ts
2023-02-14 03:39:13 +03:30

10 lines
174 B
TypeScript

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