UNPKG

528 BTypeScriptView Raw
1import type { ComponentPublicInstance } from 'vue';
2import type { ProgressProps } from './Progress';
3export type ProgressInstance = ComponentPublicInstance<ProgressProps>;
4export type ProgressThemeVars = {
5 progressHeight?: string;
6 progressColor?: string;
7 progressInactiveColor?: string;
8 progressBackground?: string;
9 progressPivotPadding?: string;
10 progressPivotTextColor?: string;
11 progressPivotFontSize?: string;
12 progressPivotLineHeight?: number | string;
13 progressPivotBackground?: string;
14};