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

24 lines
954 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
* ,(0~6)
* @param date //
* @param month ()
* @param day (0)(1)(2)(3)(4)(5)(6)
*/
export declare function getWhatWeek(date: string | Date | number, week?: number | string, day?: number | string): Date;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* ,(0~6)
* @param date //
* @param month ()
* @param day (0)(1)(2)(3)(4)(5)(6)
*/
getWhatWeek: typeof getWhatWeek;
}
}
export default getWhatWeek