node-web-mvc
Version:
node spring mvc
15 lines (14 loc) • 426 B
TypeScript
/**
* @module ApiIgnore
* 忽略文档生成
*/
declare class ApiIgnore {
}
/**
* 标注此控制器不生成文档
*/
declare const _default: {
(target: Function): any;
(options: import("../../servlets/annotations/Target").CreateOptions<typeof ApiIgnore>): ClassDecorator;
} & import("../../servlets/annotations/annotation/type").LinkAnnotationType<typeof ApiIgnore> & typeof ApiIgnore;
export default _default;