mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 07:36:39 +08:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
import { JWT } from "next-auth/jwt";
|
|
import { User } from "@prisma/client";
|
|
|
|
export type CUS_JWT = JWT & {
|
|
user: User,
|
|
}
|