徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
842 B

5 months ago
/**
*
* @param date //
* @param year ()()()
*/
export declare function getWhatYear(date: string | Date | number, offset: number): Date;
/**
* (first)(last)(0~11)
* @param date //
* @param year ()()()
* @param month (first)(last)0-11
*/
export declare function getWhatYear(date: string | Date | number, offset: number, month: number | 'first' | 'last'): Date;
declare module './ctor' {
interface XEUtilsMethods {
getWhatYear: typeof getWhatYear;
}
}
export default getWhatYear