Bansari Akhani
set show approve flag based on role and invoice status
2f170d4
raw
history blame contribute delete
315 Bytes
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;
}