UNPKG

node-web-mvc

Version:
16 lines (15 loc) 539 B
/** * @module Bean * @description 标注指定方法返回值用于存储到ico容器 */ declare class Bean { value?: string; name?: string; } declare const _default: { (options: string | import("../../servlets/annotations/Target").CreateOptions<typeof Bean>): MethodDecorator; (target: { [x: string]: any; }, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): any; } & import("../../servlets/annotations/annotation/type").LinkAnnotationType<typeof Bean> & typeof Bean; export default _default;