quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 404 B
text/typescript
import { AyahId, Juz } from "./types.cjs";
//#region src/findJuzByAyahId.d.ts
/**
* Finds the Juz (part) of the Quran that contains the given Ayah (verse) ID.
*
* @param ayahId - The ID of the Ayah (verse) to find the Juz for.
* @returns The Juz (part) of the Quran that contains the given Ayah ID.
*/
declare function findJuzByAyahId(ayahId: AyahId): Juz;
//#endregion
export { findJuzByAyahId };