UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 295 B
import { CountdownProps } from 'antd'; import { FC } from 'react'; import { STATISTIC_COUNTDOWN } from '../../../Types'; export interface ICountdown { ctype: typeof STATISTIC_COUNTDOWN; props: CountdownProps; } declare const Countdown: FC<ICountdown>; export default Countdown;