@tsed/common
Version:
A TypeScript Framework on top of Express
15 lines (14 loc) • 430 B
TypeScript
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;
}