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

8 lines
228 B
TypeScript

/**
* Checks if a given Ethiopic year is a leap year.
*
* @param year - The Ethiopic year.
* @returns True if the year is a leap year; otherwise, false.
*/
export declare function isEthiopicLeapYear(year: number): boolean;