quran-meta
Version:
Library with meta data and functionality related to Holy Quran
16 lines (14 loc) • 742 B
text/typescript
import { RiwayaData } from "./lists/types.mjs";
import { AyahNo, RubAlHizbId, Surah } from "./types.mjs";
//#region src/findRubAlHizb.d.ts
/**
* Finds the Juz (part) and Rub-ul-Hizb/Maqra (quarter section) of the Quran that the given Ayah (verse) belongs to.
*
* @param surah - The Surah (chapter) number.
* @param ayah - The Ayah (verse) number. Defaults to 1 if not provided.
* @param data - The Lists object containing SurahList and HizbQuarterList.
* @returns An object containing the Juz (part) number, Hizb (section) number, and the index of the Hizb that the given Ayah belongs to.
*/
declare function findRubAlHizb(surah: Surah, ayah: AyahNo | undefined, data: RiwayaData): RubAlHizbId;
//#endregion
export { findRubAlHizb };