UNPKG

@teamhive/nestjs-common

Version:

Our common decorators, services, etc for NestJS projects

14 lines (13 loc) 426 B
import { HttpException } from "@nestjs/common"; export declare class BaseException extends HttpException { customResponse: { [key: string]: any; }; tags: { [key: string]: number | string | boolean | bigint | symbol | null | undefined; }; error: Error; loggedMetadata: any; appCode?: string; constructor(name: string, response: string | object, status: number, error?: Error); }