UNPKG
javascript-timer
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.2
Simple countdown utility to get remaining days, hours, minutes, and seconds
javascript-timer
/
dist
/
index.d.ts
8 lines
(7 loc)
•
189 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
CountdownResult
{
days
:
number
;
hours
:
number
;
minutes
:
number
;
seconds
:
number
; }
export
declare
const
countDown
:
(
targetDate
:
string
) =>
CountdownResult
;