10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
|
import NextAuth, { DefaultSession } from "next-auth";
|
||
|
|
||
|
declare module "next-auth" {
|
||
|
interface Session {
|
||
|
user: {
|
||
|
id: any;
|
||
|
} & DefaultSession["user"];
|
||
|
}
|
||
|
}
|