UNPKG

tdesign-react

Version:
11 lines (10 loc) 404 B
import React from 'react'; import { TdStatisticProps } from './type'; import { StyledProps } from '../common'; export interface StatisticProps extends TdStatisticProps, StyledProps { } export interface StatisticRef { start: (from?: number, to?: number) => void; } declare const Statistic: React.ForwardRefExoticComponent<StatisticProps & React.RefAttributes<StatisticRef>>; export default Statistic;