/** * Memobar * @cloud */ export interface MemobarProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 标题 */ title: string; /** * 用户输入 */ value: string; /** * 文本占位符 */ placeholder: string; /** * pop */ uiType: string; /** * 只读 */ readOnly: boolean; }