12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { type ExtractPropTypes } from 'vue';
- import { type Numeric } from '../utils';
- declare const progressProps: {
- color: StringConstructor;
- inactive: BooleanConstructor;
- pivotText: StringConstructor;
- textColor: StringConstructor;
- showPivot: {
- type: BooleanConstructor;
- default: true;
- };
- pivotColor: StringConstructor;
- trackColor: StringConstructor;
- strokeWidth: (NumberConstructor | StringConstructor)[];
- percentage: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- validator: (value: Numeric) => boolean;
- };
- };
- export declare type ProgressProps = ExtractPropTypes<typeof progressProps>;
- declare const _default: import("vue").DefineComponent<{
- color: StringConstructor;
- inactive: BooleanConstructor;
- pivotText: StringConstructor;
- textColor: StringConstructor;
- showPivot: {
- type: BooleanConstructor;
- default: true;
- };
- pivotColor: StringConstructor;
- trackColor: StringConstructor;
- strokeWidth: (NumberConstructor | StringConstructor)[];
- percentage: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- validator: (value: Numeric) => boolean;
- };
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
- color: StringConstructor;
- inactive: BooleanConstructor;
- pivotText: StringConstructor;
- textColor: StringConstructor;
- showPivot: {
- type: BooleanConstructor;
- default: true;
- };
- pivotColor: StringConstructor;
- trackColor: StringConstructor;
- strokeWidth: (NumberConstructor | StringConstructor)[];
- percentage: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- validator: (value: Numeric) => boolean;
- };
- }>>, {
- inactive: boolean;
- showPivot: boolean;
- percentage: string | number;
- }>;
- export default _default;
|