UNPKG
fitr
Version:
latest (0.2.0)
0.2.0
0.1.0
Financial Investment Tracker
github.com/adimoldovan/fitr
adimoldovan/fitr
fitr
/
dist
/
utils
/
dateUtils.d.ts
9 lines
(8 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Format a date for display */
export
declare
function
formatDate
(
date
:
Date
|
string
):
string
;
/** * Get date for a given period back from today */
export
declare
function
getDateForPeriod
(
period
:
'day'
|
'week'
|
'month'
|
'year'
|
'ytd'
):
string
;