Files
lstV2/server/types/jwtToken.ts

7 lines
162 B
TypeScript

import type {JwtPayload} from "jsonwebtoken";
import type {User} from "./users.js";
export type CustomJwtPayload = JwtPayload & {
user: User | undefined;
};