gradido/backend/src/auth/CustomJwtPayload.ts

6 lines
117 B
TypeScript

import { JwtPayload } from 'jsonwebtoken'
export interface CustomJwtPayload extends JwtPayload {
pubKey: Buffer
}