/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface Progress { /** * 百分比0~100 */ percent?: number; /** * 在进度条右侧显示百分比 */ "show-info"?: boolean; /** * 圆角大小 */ "border-radius"?: number | string; /** * 右侧百分比字体大小 */ "font-size"?: number | string; /** * 进度条线的宽度 */ "stroke-width"?: number | string; /** * 进度条颜色(请使用activeColor) */ color?: string; /** * 已选择的进度条的颜色 */ activeColor?: string; /** * 未选择的进度条的颜色 */ backgroundColor?: string; /** * 进度条从左往右的动画 */ active?: boolean; /** * backwards: 动画从头播;forwards:动画从上次结束点接着播 */ "active-mode"?: string; /** * 进度增加1%所需毫秒数 */ duration?: number; /** * 动画完成事件 */ bindActiveEnd?: () => void; }