UNPKG

ts-express-kit

Version:

A TypeScript starter kit for building Express applications with best practices.

10 lines (9 loc) 196 B
export type TErrorSources = { path: string | number; message: string; }[]; export type TGenericErrorResponse = { statusCode: number; message: string; errorSources: TErrorSources; };