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

10 lines
385 B
TypeScript

/**
* Creates a new Ethiopic date
*
* @param {number} year - The year of the Ethiopic date
* @param {number} monthIndex - The zero-based month index of the Ethiopic date
* @param {number} date - The day of the month of the Ethiopic date
* @returns {Date} The corresponding Gregorian date
*/
export declare function newDate(year: number, monthIndex: number, date: number): Date;