Countdown.d.ts 369 B

12345678910
  1. import * as React from 'react';
  2. import type { StatisticProps } from './Statistic';
  3. import type { valueType } from './utils';
  4. export interface CountdownProps extends StatisticProps {
  5. format?: string;
  6. onFinish?: () => void;
  7. onChange?: (value?: valueType) => void;
  8. }
  9. declare const _default: React.NamedExoticComponent<CountdownProps>;
  10. export default _default;