8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
/**
|
|
* End of year
|
|
*
|
|
* @param {Date} date - The original date
|
|
* @returns {Date} The end of the year
|
|
*/
|
|
export declare function endOfYear(date: Date): Date;
|