import { HttpStatus } from '@nestjs/common'; export interface IErrorResponse { errorCode?: number; statusCode: HttpStatus; message?: string; timestamp: string; path: string; description?: string; }