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: {
|
2023-02-13 18:09:13 -06:00
|
|
|
id: number;
|
2023-07-08 05:35:43 -05:00
|
|
|
username: string;
|
|
|
|
email: string;
|
2023-07-15 21:15:43 -05:00
|
|
|
isSubscriber: boolean;
|
2023-07-08 05:35:43 -05:00
|
|
|
};
|
2023-02-08 15:11:33 -06:00
|
|
|
}
|
|
|
|
}
|