sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
17 lines (16 loc) • 505 B
TypeScript
import { type StyleValue } from 'vue';
import { DefaultProps } from '../config';
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: () => DefaultProps<ProgressCircleProps>;
export interface ProgressCircleSlots {
default?(props: Record<string, never>): any;
}