Files
2026-05-30 19:59:39 -03:00

9 lines
322 B
TypeScript

/**
* Checks if two dates fall in the same Ethiopian year.
*
* @param dateLeft - The first gregorian date to compare
* @param dateRight - The second gregorian date to compare
* @returns True if the dates are in the same Ethiopian year
*/
export declare function isSameYear(dateLeft: Date, dateRight: Date): boolean;