Progress.d.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { type ExtractPropTypes } from 'vue';
  2. import { type Numeric } from '../utils';
  3. declare const progressProps: {
  4. color: StringConstructor;
  5. inactive: BooleanConstructor;
  6. pivotText: StringConstructor;
  7. textColor: StringConstructor;
  8. showPivot: {
  9. type: BooleanConstructor;
  10. default: true;
  11. };
  12. pivotColor: StringConstructor;
  13. trackColor: StringConstructor;
  14. strokeWidth: (NumberConstructor | StringConstructor)[];
  15. percentage: {
  16. type: (NumberConstructor | StringConstructor)[];
  17. default: number;
  18. validator: (value: Numeric) => boolean;
  19. };
  20. };
  21. export declare type ProgressProps = ExtractPropTypes<typeof progressProps>;
  22. declare const _default: import("vue").DefineComponent<{
  23. color: StringConstructor;
  24. inactive: BooleanConstructor;
  25. pivotText: StringConstructor;
  26. textColor: StringConstructor;
  27. showPivot: {
  28. type: BooleanConstructor;
  29. default: true;
  30. };
  31. pivotColor: StringConstructor;
  32. trackColor: StringConstructor;
  33. strokeWidth: (NumberConstructor | StringConstructor)[];
  34. percentage: {
  35. type: (NumberConstructor | StringConstructor)[];
  36. default: number;
  37. validator: (value: Numeric) => boolean;
  38. };
  39. }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
  40. color: StringConstructor;
  41. inactive: BooleanConstructor;
  42. pivotText: StringConstructor;
  43. textColor: StringConstructor;
  44. showPivot: {
  45. type: BooleanConstructor;
  46. default: true;
  47. };
  48. pivotColor: StringConstructor;
  49. trackColor: StringConstructor;
  50. strokeWidth: (NumberConstructor | StringConstructor)[];
  51. percentage: {
  52. type: (NumberConstructor | StringConstructor)[];
  53. default: number;
  54. validator: (value: Numeric) => boolean;
  55. };
  56. }>>, {
  57. inactive: boolean;
  58. showPivot: boolean;
  59. percentage: string | number;
  60. }>;
  61. export default _default;