UNPKG
nestjs-starter
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
Get started for beginners with Nestjs
github.com/pktai/nestjs-starter
pktai/nestjs-starter
nestjs-starter
/
src
/
shared
/
config
/
interfaces
/
error-message.interface.ts
9 lines
(7 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
HttpStatus
}
from
'@nestjs/common'
;
export
interface
IErrorMessages
{
readonly
type
:
string
;
readonly
httpStatus
:
HttpStatus
;
readonly
errorMessage
:
string
;
readonly
userMessage
:
string
; }