node-web-mvc
Version:
node spring mvc
13 lines (12 loc) • 470 B
TypeScript
/**
* @module Service
* @description 注册服务类型的bean到Ioc容器中
*/
import Component from './Component';
declare class Service extends Component {
}
declare const _default: {
(target: Function): any;
(options: string | import("../../servlets/annotations/Target").CreateOptions<typeof Service>): ClassDecorator;
} & import("../../servlets/annotations/annotation/type").LinkAnnotationType<typeof Service> & typeof Service;
export default _default;