/* 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; /** * 进度条的高度(单位:px) */ "stroke-width"?: number | string; /** * 圆角大小(单位:px) */ "border-radius"?: number | string; /** * 右侧百分比字体大小(单位:px) */ "font-size"?: number | string; /** * 进度条颜色(推荐使用 active-color) */ color?: string; /** * 已选择的进度条的颜色 */ "active-color"?: string; /** * 未选择的进度条的颜色 */ "background-color"?: string; /** * 进度条从左往右的动画 */ active?: boolean; /** * backwards:动画从头播;forwards:动画从上次结束点接着播 */ "active-mode"?: string; /** * 进度增加 1% 所需毫秒数 */ duration?: number; }