node-web-mvc
Version:
node spring mvc
21 lines (20 loc) • 714 B
TypeScript
/**
* @module ModelAttribute
*/
declare class ModelAttribute {
value?: string;
binding?: boolean;
}
declare const _default: {
(options: string | import("./Target").CreateOptions<typeof ModelAttribute>): (target: Object, name: string, p?: number | TypedPropertyDescriptor<any>) => any;
(target: {
[x: string]: any;
}, propertyKey: string): any;
(target: {
[x: string]: any;
}, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): any;
(target: {
[x: string]: any;
}, propertyKey: string, parameterIndex: number): any;
} & import("./annotation/type").LinkAnnotationType<typeof ModelAttribute> & typeof ModelAttribute;
export default _default;