/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { Renderer, ElementRef } from '@angular/core'; import { DefaultValueAccessor } from '@angular/forms'; /** * 输入类表单控件 */ export declare class WeUIFormControl extends DefaultValueAccessor { private __renderer; private __elementRef; /** * 控件ID */ id: string; /** * 控件name */ name: string; /** * 控件 label */ label: string; /** * 是否禁用 */ disabled: boolean; /** * 额外样式 */ additionalCls: string; /** * value 属性为 input 元素设定值。
* * 对于不同的输入类型,value 属性的用法也不同: * *

注释:<input type="checkbox"> 和 <input type="radio"> 中必须设置 value 属性。

*

注释:value 属性无法与 一同使用。

*/ value: any; getBasicControlCls(): string; constructor(__renderer: Renderer, __elementRef: ElementRef); }