mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
77b351f68f
* fix: ok button of the DatePicker becomes compacted when used with Space.Compact * fix: break CSS selector * fix: break the compact context on the panel * chore: update test
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
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;
|
|
|
|
(Statistic as CompoundedStatistic).Countdown = Countdown;
|
|
|
|
export default Statistic as CompoundedStatistic;
|