index.d.ts 263 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5 6 7 8 9
import * as React from 'react';
export interface ICountDownProps {
  format?: (time: number) => void;
  target: Date | number;
  onEnd?: () => void;
  style?: React.CSSProperties;
}

export default class CountDown extends React.Component<ICountDownProps, any> {}