quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 564 B
text/typescript
import { RubAlHizb, RubAlHizbId } from "./types.cjs";
//#region src/getRubAlHizb.d.ts
/**
* Retrieves the basic metadata for a specific quarter (rub' al-hizb) of the Quran.
*
* @param quarterIndex - The index of the quarter (rub' al-hizb) to retrieve metadata for, where 1 is the first quarter.
* @returns An object containing the metadata for the specified quarter, including the juz' (part), hizb (section), and the quarter (rub' al-hizb) index.
*/
declare function getRubAlHizb(quarterIndex: RubAlHizbId): RubAlHizb;
//#endregion
export { getRubAlHizb };