UNPKG

nestjs-starter

Version:

Get started for beginners with Nestjs

9 lines (7 loc) 207 B
import { HttpStatus } from '@nestjs/common'; export interface IErrorMessages { readonly type: string; readonly httpStatus: HttpStatus; readonly errorMessage: string; readonly userMessage: string; }