UNPKG

event-services

Version:

Collection of hooks, components, generics (buttons, containers, styles, tools) for creating web applications for guest management for any type of events: weddings, parties, graduations that require guest confirmation and display useful information to gues

10 lines (9 loc) 244 B
type CountDownT = { days: number | string; hours: number | string; minutes: number | string; seconds: number | string; timeOver: boolean; }; export declare const useCountDown: (DATE_TARGET: string) => CountDownT; export {};