UNPKG
@minionorg/share
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
函数库,工具库
github.com/minionorg/share-open
minionorg/share-open
@minionorg/share
/
typings
/
packages
/
DateUtils
/
getDaysInMonth
/
index.d.ts
11 lines
(10 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 获取当前月份的天数 * *
@param
{
Date
} date 日期 *
@return
{
number
} 天数 *
@example
* getDaysInMonth(new Date(2022, 8, 25)) = 30 */
declare
function
getDaysInMonth
(
date
:
Date
):
number
;
export
default
getDaysInMonth;