UNPKG

@mvx/mvc

Version:

@mvx/mvc is mvc framework on server, base on koa, @tsdi frameworks

14 lines (13 loc) 256 B
/** * http error * * @export * @class HttpError * @extends {Error} */ export declare class HttpError extends Error { status: number; constructor(status: number, message?: string | string[]); toString(): string; static ρAnn(): any; }