gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
19 lines (18 loc) • 471 B
TypeScript
import { type StyleValue } from 'vue';
export interface ProgressCircleProps {
rootStyle?: StyleValue;
rootClass?: string;
percent?: number;
color?: string;
trackColor?: string;
thickness?: number;
size?: string;
status?: 'success' | 'warning' | 'error';
}
export declare const defaultProgressCircle: {
percent: number;
thickness: number;
};
export interface ProgressCircleSlots {
default?(props: Record<string, never>): any;
}