index.d.ts 263 B

123456789
  1. import * as React from 'react';
  2. export interface ICountDownProps {
  3. format?: (time: number) => void;
  4. target: Date | number;
  5. onEnd?: () => void;
  6. style?: React.CSSProperties;
  7. }
  8. export default class CountDown extends React.Component<ICountDownProps, any> {}