quran-meta
Version:
Library with meta data and functionality related to Holy Quran
15 lines (13 loc) • 491 B
text/typescript
import { RiwayaData } from "./lists/types.mjs";
import { AyahId, Page } from "./types.mjs";
//#region src/isAyahPageFirst.d.ts
/**
* Determines if the given ayah is the first ayah of a juz.
*
* @param ayahId - The ayah id .
* @param data - The Lists object for the riwaya.
* @returns The page number if the ayah is the first ayah of the page, otherwise -1.
*/
declare function isAyahPageFirst(ayahId: AyahId, data: RiwayaData): Page | number;
//#endregion
export { isAyahPageFirst };