/** * Svip * @cloud */ export interface SvipProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 名称 */ title: string; /** * icon地址 */ iconUrl: string; /** * 描述 */ desc: string; /** * 描述css属性 */ descCss: StyleType; /** * 选择配置 */ options: OptionType[]; } export interface StyleType { /** * 字体 */ fontSize: string; } export interface OptionType { /** * 是否禁用 */ disable: String | Boolean; /** * 是否选中 */ isChecked: String | Boolean; /** * title */ title: string; /** * id */ id: string; }