Number.d.ts 267 B

12345678
  1. import * as React from 'react';
  2. import type { FormatConfig, valueType } from './utils';
  3. interface NumberProps extends FormatConfig {
  4. value: valueType;
  5. prefixCls?: string;
  6. }
  7. declare const StatisticNumber: React.FC<NumberProps>;
  8. export default StatisticNumber;