/** * Servicebar * @cloud */ export interface ServicebarProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 已选中的值 */ desc: string; /** * extraLink */ extraLink: string; /** * 引导选择的文本 */ title: string; /** * 可选的列表 */ options: OptionType[]; } export interface OptionType { /** * 描述 */ desc: string; /** * 选中 */ isChecked: string; /** * 文案 */ title: string; }