Spaces:
Runtime error
Runtime error
File size: 315 Bytes
178b3d8 c05123c 099ffb7 c05123c 099ffb7 c05123c 178b3d8 2f170d4 178b3d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { JwtPayload } from 'jsonwebtoken';
import { Request } from 'express';
export interface UserInterface {
id?: number;
name: string;
email: string;
role_id: number;
status: string;
password: string;
}
export interface AuthenticatedRequest extends Request {
user?: UserInterface;
}
|