UNPKG
node-enterprise-starter
Version:
latest (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
<h1 align="center">Node Enterprise Starter</h1>
node-enterprise-starter
/
src
/
app
/
interface
/
error.ts
11 lines
(9 loc)
•
193 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
TErrorSources
= {
path
:
string
|
number
;
message
:
string
; }[];
export
type
TGenericErrorResponse
= {
statusCode
:
number
;
message
:
string
;
errorSources
:
TErrorSources
; };