taxonomy/types/next-auth.d.ts
2022-11-07 16:37:54 +04:00

18 lines
264 B
TypeScript

import { User } from "next-auth"
import { JWT } from "next-auth/jwt"
type UserId = string
declare module "next-auth/jwt" {
interface JWT {
id: UserId
}
}
declare module "next-auth" {
interface Session {
user: User & {
id: UserId
}
}
}