UNPKG

1.67 kBTypeScriptView Raw
1export declare const ProgressStatuses: ["normal", "exception", "active", "success"];
2export declare const ProgressType: import("vue-types").VueTypeDef<"circle" | "line" | "dashboard">;
3export declare const ProgressSize: import("vue-types").VueTypeDef<"default" | "small">;
4export declare const ProgressProps: {
5 prefixCls: import("vue-types").VueTypeValidableDef<string> & {
6 default: string;
7 };
8 type: import("vue-types").VueTypeDef<"circle" | "line" | "dashboard">;
9 percent: import("vue-types").VueTypeValidableDef<number> & {
10 default: number;
11 };
12 successPercent: import("vue-types").VueTypeValidableDef<number> & {
13 default: number;
14 };
15 format: import("vue-types").VueTypeValidableDef<(...args: any[]) => any> & {
16 default: (...args: any[]) => any;
17 };
18 status: import("vue-types").VueTypeDef<"normal" | "active" | "success" | "exception">;
19 showInfo: import("vue-types").VueTypeValidableDef<boolean>;
20 strokeWidth: import("vue-types").VueTypeValidableDef<number> & {
21 default: number;
22 };
23 strokeLinecap: import("vue-types").VueTypeDef<string>;
24 strokeColor: import("vue-types").VueTypeDef<string | {
25 [key: string]: any;
26 }>;
27 trailColor: import("vue-types").VueTypeValidableDef<string> & {
28 default: string;
29 };
30 width: import("vue-types").VueTypeValidableDef<number> & {
31 default: number;
32 };
33 gapDegree: import("vue-types").VueTypeValidableDef<number> & {
34 default: number;
35 };
36 gapPosition: import("vue-types").VueTypeDef<"bottom" | "left" | "right" | "top">;
37 size: import("vue-types").VueTypeDef<"default" | "small">;
38};