UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

15 lines (13 loc) 558 B
import { RiwayaData } from "./lists/types.cjs"; import { AyahId, RubAlHizbId } from "./types.cjs"; //#region src/findRubAlHizbByAyahId.d.ts /** * Finds the Maqra/Rub-al-Hizb of the Quran that contains the given Ayah (verse) ID. * * @param ayahId - The ID of the Ayah (verse) to find the Juz for. * @param lists - The Lists object for the riwaya. * @returns The Maqra of the Quran that contains the given Ayah ID. */ declare function findRubAlHizbByAyahId(ayahId: AyahId, data: RiwayaData): RubAlHizbId; //#endregion export { findRubAlHizbByAyahId };