7 lines
183 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
import * as React from "react";
export declare const Countdown: (props: {
timestamp: number;
finished?: React.ReactNode;
callbackFinished?: () => void;
}) => JSX.Element;