12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
|
import NextAuth, { DefaultSession } from "next-auth"
|
||
|
|
||
|
declare module "next-auth" {
|
||
|
interface Session {
|
||
|
user: {
|
||
|
/** The user's internal ID. */
|
||
|
id: string;
|
||
|
} & DefaultSession["user"]
|
||
|
}
|
||
|
}
|
||
|
|