Number.d.ts 270 B

1234567
  1. import type { FunctionalComponent } from 'vue';
  2. import type { FormatConfig, valueType } from './utils';
  3. interface NumberProps extends FormatConfig {
  4. value: valueType;
  5. }
  6. declare const StatisticNumber: FunctionalComponent<NumberProps>;
  7. export default StatisticNumber;