Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/getWhatMonth.d.ts

23 lines
839 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param date //
* @param offsetMonth (0)
*/
export declare function getWhatMonth(date: string | Date | number, offset: number): Date;
/**
* (first)(last)
* @param date //
* @param offsetMonth ()
* @param offsetDay (first)(last)()
*/
export declare function getWhatMonth(date: string | Date | number, offset: number, day: number | 'first' | 'last'): Date;
declare module './ctor' {
interface XEUtilsMethods {
getWhatMonth: typeof getWhatMonth;
}
}
export default getWhatMonth