node-web-mvc
Version:
node spring mvc
13 lines (12 loc) • 456 B
TypeScript
declare class ExceptionHandler {
}
/**
* 标注指定类为一个rest 异常处理函数
*/
declare const _default: {
(options: import("./Target").CreateOptions<typeof ExceptionHandler>): MethodDecorator;
(target: {
[x: string]: any;
}, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): any;
} & import("./annotation/type").LinkAnnotationType<typeof ExceptionHandler> & typeof ExceptionHandler;
export default _default;