UNPKG

tdesign-mobile-vue

Version:
13 lines (12 loc) 442 B
import { TNode } from '../common'; export interface TdProgressProps { color?: string | Array<string> | Record<string, string>; label?: string | boolean | TNode; percentage?: number; status?: StatusEnum; strokeWidth?: string | number; theme?: ThemeEnum; trackColor?: string; } export declare type StatusEnum = 'success' | 'error' | 'warning' | 'active'; export declare type ThemeEnum = 'line' | 'plump' | 'circle';