mirror of
https://github.com/acamarata/luxon-hijri.git
synced 2026-06-30 18:54:28 +00:00
9 lines
434 B
TypeScript
9 lines
434 B
TypeScript
/**
|
|
* Purpose: Hijri month name arrays (long, medium, short), re-exported from hijri-core.
|
|
* Inputs: n/a — data exports
|
|
* Outputs: hmLong[12], hmMedium[12], hmShort[12] — index 0 = Muharram, index 11 = Dhul Hijjah
|
|
* Constraints: arrays are fixed-length 12; maintained in hijri-core
|
|
* SPORT: packages.md — luxon-hijri row
|
|
*/
|
|
// hMonths.ts: re-exports from hijri-core
|
|
export { hmLong, hmMedium, hmShort } from "hijri-core";
|