UNPKG
honestjs
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
HonestJS - a modern web framework built on top of Hono
github.com/honestjs/honest
honestjs/honest
honestjs
/
dist
/
interfaces
/
error-response.interface.d.ts
14 lines
(13 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>; }>; }