el.xwx.moe/types/next-auth.d.ts
2023-07-08 14:05:43 +03:30

12 lines
174 B
TypeScript

import NextAuth from "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: number;
username: string;
email: string;
};
}
}