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

13 lines
203 B
TypeScript
Raw Normal View History

2023-07-08 05:35:43 -05:00
import NextAuth from "next-auth";
2023-02-08 15:11:33 -06:00
declare module "next-auth" {
interface Session {
user: {
id: number;
2023-07-08 05:35:43 -05:00
username: string;
email: string;
isSubscriber: boolean;
2023-07-08 05:35:43 -05:00
};
2023-02-08 15:11:33 -06:00
}
}