UNPKG
date-limits
Version:
latest (1.1.0)
1.1.0
Check if a date is before a flexible limit.
github.com/joker876/date-limits
joker876/date-limits
date-limits
/
dist
/
types
/
get-closest-date.d.ts
3 lines
(2 loc)
•
162 B
TypeScript
View Raw
1
2
3
import
{
DateLimitConfig
}
from
'./types'
;
export
declare
function
getClosestDate
(
config
:
DateLimitConfig
,
targetDate
?:
Date
,
yearLimit
?:
number
):
Date
|
null
;