/** * getMonthOfDay * @Author: liwb (lwbhtml@163.com) * @Date: 2025-04-08 09:41 * @LastEditTime: 2025-04-08 09:41 * @Description: getMonthOfDay */ /** * 获取某月有多少天 * 摘自:https://segmentfault.com/a/1190000013041329 * * @param {string} time 时间字符串 * @return {number} 天数 * @example * * getMonthOfDay('2018-1-29') * // => 31 */ export declare function getMonthOfDay(time: string): number;