/* 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 { /** * 进度 */ percent?: number; /** * 进度条的垂直宽度 */ "stroke-width"?: number; /** * 进度条颜色 */ "active-color"?: string; /** * 未达到进度的颜色 */ "background-color"?: string; /** * 进度条动画 */ active?: boolean; /** * backwards:动画从头播 * forwards:动画从上次结束点接着播 */ "active-mode"?: string; /** * 进度增加1%所需毫秒数,仅在 active 为 true 时生效 */ duration?: number; /** * 动画完成后执行的事件,仅在 active 为 true 时执行 */ bindActiveEnd?: () => void; }