7ff94a32b1abfbdd150c7abede5aff4215c4b5be657fe04008d29ea1868b59bbb591980d522a36e707ae06f1d96bf8701b9d830ffcb737cee62a665be5fcd6 826 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { ElementUIComponent } from './component'
  2. /** Statistic Component */
  3. export declare class ElStatistic extends ElementUIComponent {
  4. /** Set the decimal point */
  5. decimalSeparator: string
  6. /** Sets the thousandth identifier */
  7. groupSeparator: string
  8. /** numerical precision */
  9. precision: number
  10. /** Numerical content */
  11. value: string | number
  12. /** Title of numerical value */
  13. title: string | number
  14. /** Whether to enable the countdown function */
  15. timeIndices: boolean
  16. /** Sets the style of the value */
  17. valueStyle: object
  18. /** Numeric content formatting countdown display */
  19. format: string
  20. /** Set the ratio */
  21. rate: number
  22. /** Set the suffix of the value */
  23. suffix: string
  24. /** Set the prefix of the value */
  25. prefix: string
  26. }