From 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 16 一月 2026 17:31:08 +0800
Subject: [PATCH] 2026.1.16
---
miniprogram_npm/tdesign-miniprogram/progress/type.d.ts | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/miniprogram_npm/tdesign-miniprogram/progress/type.d.ts b/miniprogram_npm/tdesign-miniprogram/progress/type.d.ts
index d1316a0..a77b327 100644
--- a/miniprogram_npm/tdesign-miniprogram/progress/type.d.ts
+++ b/miniprogram_npm/tdesign-miniprogram/progress/type.d.ts
@@ -11,26 +11,26 @@
type: NumberConstructor;
value?: number;
};
+ size?: {
+ type: null;
+ value?: string | number;
+ };
status?: {
type: StringConstructor;
- value?: StatusEnum;
+ value?: ProgressStatus;
};
strokeWidth?: {
type: null;
value?: string | number;
};
- style?: {
- type: StringConstructor;
- value?: string;
- };
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';
--
Gitblit v1.9.3