import BaseNode from '../common/BaseNode'; /** * 设置器枚举选项 */ export declare class SetterOption extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'SetterOption'; /** * 选项值 */ value: string; /** * 选项标题 */ title: string; /** * 选项图标 */ icon?: string; /** * 选项工具提示 */ tooltip?: string; /** * 是否显隐 */ tsIf?: string; /** * 是否禁用 */ tsDisabledIf?: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): SetterOption; name?: string; } export default SetterOption; //# sourceMappingURL=SetterOption__.d.ts.map