Files
linkwarden/types/next-auth.d.ts
T
2023-07-15 22:15:43 -04:00

13 lines
203 B
TypeScript

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