tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 404 B
TypeScript
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;