mirror of
https://github.com/acamarata/luxon-hijri.git
synced 2026-07-01 03:04:30 +00:00
9 lines
444 B
TypeScript
9 lines
444 B
TypeScript
/**
|
|
* Purpose: Hijri weekday name and numeric arrays, re-exported from hijri-core.
|
|
* Inputs: n/a — data exports
|
|
* Outputs: hwLong[7], hwShort[7], hwNumeric[7] — index 0 = Sunday (Islamic convention)
|
|
* Constraints: arrays are fixed-length 7; Sunday=1 in hwNumeric; maintained in hijri-core
|
|
* SPORT: packages.md — luxon-hijri row
|
|
*/
|
|
// hWeekdays.ts: re-exports from hijri-core
|
|
export { hwLong, hwShort, hwNumeric } from "hijri-core";
|