/** * Tradeinput * @cloud */ export interface TradeinputProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 输入框标题 */ title: string; /** * 输入框文本 */ value: string; /** * 输入框占位符 */ placeholder: string; /** * 最大长度 */ maxLength: string; /** * 最短长度 */ minLength: string; /** * 是否为textArea */ textArea: string; /** * 键盘类型 */ keyboardType: string; }