/* 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?: { [k: string]: unknown; }; /** * 在右侧显示百分比值。 */ "show-info"?: boolean; /** * 线的粗细,单位 px。 */ "stroke-width"?: number; /** * 已选择的进度条颜色。 */ "active-color"?: string; /** * 未选择的进度条颜色。 */ "background-color"?: string; /** * 是否添加从 0% 开始加载的入场动画。 */ active?: boolean; }