riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/progress/type.d.ts
@@ -3,14 +3,6 @@
        type: null;
        value?: string | Array<string> | Record<string, string>;
    };
    style?: {
        type: StringConstructor;
        value?: string;
    };
    externalClasses?: {
        type: ArrayConstructor;
        value?: ['t-class', 't-class-bar', 't-class-label'];
    };
    label?: {
        type: null;
        value?: string | boolean;
@@ -19,9 +11,13 @@
        type: NumberConstructor;
        value?: number;
    };
    size?: {
        type: null;
        value?: string | number;
    };
    status?: {
        type: StringConstructor;
        value?: StatusEnum;
        value?: ProgressStatus;
    };
    strokeWidth?: {
        type: null;
@@ -29,12 +25,12 @@
    };
    theme?: {
        type: StringConstructor;
        value?: ThemeEnum;
        value?: ProgressTheme;
    };
    trackColor?: {
        type: StringConstructor;
        value?: string;
    };
}
export declare type StatusEnum = 'success' | 'error' | 'warning' | 'active';
export declare type ThemeEnum = 'line' | 'plump' | 'circle';
export declare type ProgressStatus = 'success' | 'error' | 'warning' | 'active';
export declare type ProgressTheme = 'line' | 'plump' | 'circle';