NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/date/getWhatMonth.d.ts

24 lines
975 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
* ,(first)(last)
* @param date //
* @param month ()
* @param day (null默认当前天)(first)(last)()
*/
export declare function getWhatMonth(date: string | Date | number, month?: number | string, day?: number | string): Date;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* ,(first)(last)
* @param date //
* @param month ()
* @param day (null默认当前天)(first)(last)()
*/
getWhatMonth: typeof getWhatMonth;
}
}
export default getWhatMonth