comicbox/next-auth.d.ts

12 lines
210 B
TypeScript
Raw Normal View History

2022-07-26 21:02:44 +00:00
import NextAuth, { DefaultSession } from "next-auth"
declare module "next-auth" {
interface Session {
user: {
/** The user's internal ID. */
id: string;
} & DefaultSession["user"]
}
}