UNPKG

@chatui/core

Version:

The React library for Chatbot UI

12 lines (11 loc) 273 B
export interface Options { targetDate: string | number | Date; onEnd?: () => void; } export interface TimeLeft { hours: number; minutes: number; seconds: number; } declare const useCountdown: (options: Options) => TimeLeft; export default useCountdown;