UNPKG

typenexus

Version:

TypeNexus is a good tool for API encapsulation and management. It provides a clean and lightweight way to package TypeORM functionality, helping you build applications faster while reducing template code redundancy and type conversion work.

11 lines (10 loc) 350 B
/** * Used to throw HTTP errors. * Just do throw new HttpError(code, message) in your controller action and * default error handler will catch it and give in your response given code and message . */ export declare class HttpError extends Error { httpCode: number; constructor(httpCode: number, message?: string); get stack(): any; }