20 lines
332 B
TypeScript
20 lines
332 B
TypeScript
import { UserRole } from "@prisma/client";
|
|
import { User } from "next-auth";
|
|
import { JWT } from "next-auth/jwt";
|
|
|
|
export type ExtendedUser = User & {
|
|
role: UserRole;
|
|
};
|
|
|
|
declare module "next-auth/jwt" {
|
|
interface JWT {
|
|
role: UserRole;
|
|
}
|
|
}
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
user: ExtendedUser;
|
|
}
|
|
}
|