UNPKG

mongoose-zod-error-formatter

Version:

A powerful error formatter utility for Mongoose and Zod validation errors, designed for Express.js applications. Simplify and unify your API error handling with structured, user-friendly error messages.

10 lines (9 loc) 203 B
export interface IErrorMessages { path?: string | number; message: string; } export interface IErrorResponse { statusCode: number; message: string; errorMessages: IErrorMessages[]; }