UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 261 B
/** * returns the total amount of days in the month (considering leap years) */ declare function totalDaysInMonth(fullYear: number, monthIndex: number): number; declare function totalDaysInMonth(fullYear: Date): number; export default totalDaysInMonth;