UNPKG

@nestjs/common

Version:

Nest - modern, fast, powerful node.js web framework (@common)

8 lines (7 loc) 213 B
export type HttpExceptionBodyMessage = string | string[] | number; export interface HttpExceptionBody { statusCode: number; message: HttpExceptionBodyMessage; error?: string; errorCode?: string; }