UNPKG

honestjs

Version:

HonestJS - a modern web framework built on top of Hono

14 lines (13 loc) 295 B
export interface ErrorResponse { status: number; message: string; timestamp: string; path: string; requestId?: string; code?: string; details?: Record<string, any>; errors?: Array<{ property: string; constraints: Record<string, string>; }>; }