node-web-mvc
Version:
node spring mvc
15 lines (14 loc) • 503 B
TypeScript
import Alias from './annotation/Alias';
declare class AliasFor extends Alias {
}
/**
* 一个别名注解
* 可用于为注解的属性,进行别名赋值配置
*/
declare const _default: {
(options: string | import("./Target").CreateOptions<typeof AliasFor>): (target: Object, propertyKey: string) => any;
(target: {
[x: string]: any;
}, propertyKey: string): any;
} & import("./annotation/type").LinkAnnotationType<typeof AliasFor> & typeof AliasFor;
export default _default;