luxon-hijri
Version:
A Hijri date converter based on the Umm al-Qura calendar system, using Luxon for date manipulations.
12 lines (11 loc) • 347 B
TypeScript
/**
* Formats a Hijri date according to the given format string
* @param {Date} hijriDate - The Hijri date to format
* @param {string} format - The format string
* @returns {string} - The formatted date string
*/
export declare function formatHijriDate(hijriDate: {
hy: number;
hm: number;
hd: number;
}, format: string): string;