UNPKG

@tsed/common

Version:
15 lines (14 loc) 430 B
import { Type } from "@tsed/core"; import { InternalServerError } from "@tsed/exceptions"; /** * @private */ export declare class TemplateRenderError extends InternalServerError { name: string; constructor(target: Type<any> | string, method: string | symbol, err: Error); /** * * @returns {string} */ static buildMessage(target: Type<any> | string, method: string | symbol, err: Error): string; }