gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
22 lines (21 loc) • 541 B
TypeScript
import { type StyleValue } from 'vue';
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: {
percent: number;
showText: boolean;
};
export interface ProgressBarSlots {
default?(props: Record<string, never>): any;
}