index.d.ts 261 B

123456789
  1. import * as React from "react";
  2. export interface CountDownProps {
  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<CountDownProps, any> {}