el.xwx.moe/types/next-auth.d.ts

10 lines
174 B
TypeScript
Raw Normal View History

2023-02-08 15:11:33 -06:00
import NextAuth, { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: number;
2023-02-08 15:11:33 -06:00
} & DefaultSession["user"];
}
}