UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

20 lines (19 loc) 577 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface ProgressBarProps { rootStyle?: StyleValue; rootClass?: string; percent?: number; inside?: boolean; color?: string; trackColor?: string; thickness?: string; showText?: boolean; striped?: boolean; animated?: boolean; status?: 'success' | 'warning' | 'error'; } export declare const defaultProgressBarProps: () => DefaultProps<ProgressBarProps>; export interface ProgressBarSlots { default?(props: Record<string, never>): any; }