amis-rpc-design/node_modules/antd/es/statistic/index.d.ts

12 lines
433 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import type { CountdownProps } from './Countdown';
import Countdown from './Countdown';
import type { StatisticProps } from './Statistic';
import Statistic from './Statistic';
export type { CountdownProps, StatisticProps };
type CompoundedComponent = {
Countdown: typeof Countdown;
};
export type CompoundedStatistic = typeof Statistic & CompoundedComponent;
declare const _default: CompoundedStatistic;
export default _default;