UNPKG
@idris-maps/yyyy-mm-dd
Version:
latest (0.0.2)
0.0.2
0.0.1
A date library dealing only with days in the YYYY-MM-DD format
@idris-maps/yyyy-mm-dd
/
dist
/
monthsInRange.d.ts
5 lines
(4 loc)
•
163 B
TypeScript
View Raw
1
2
3
4
5
import
{
Range
}
from
'./range'
;
declare
type
Month
=
string
;
declare
const
_monthsInRange
:
(
{ start, end }:
Range
) =>
Month
[];
export
default
_monthsInRange;