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

24 lines
779 B
TypeScript
Raw Normal View History

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