import * as types from './utils/types'; import BaseNode from '../common/BaseNode'; import type TypeAnnotation from './TypeAnnotation__'; import type DefaultValue from './DefaultValue__'; /** * 注解属性 */ export declare class AnnotationProperty extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'AnnotationProperty'; /** * 注解属性名称 */ name: string; /** * 注解属性标题 */ title: string; /** * 注解属性类型 */ typeAnnotation: TypeAnnotation; /** * 设置器 */ setter: types.BaseSetterNode; /** * 注解属性默认值 */ defaultValue?: DefaultValue; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): AnnotationProperty; } export default AnnotationProperty; //# sourceMappingURL=AnnotationProperty__.d.ts.map