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

jim's avatar
jim committed
9
export default class CountDown extends React.Component<ICountDownProps, any> {}