quran-meta
Version:
Library with meta data and functionality related to Holy Quran
15 lines (13 loc) • 540 B
text/typescript
import { RiwayaData } from "./lists/types.cjs";
import { AyahNo, Manzil, Surah } from "./types.cjs";
//#region src/findManzil.d.ts
/**
* Finds the Manzil number for a given Surah and Ayah
* @param surah - The Surah number or object
* @param ayah - Optional Ayah number (defaults to 1)
* @param data - The Lists object for the riwaya.
* @returns The Manzil number (1-7) containing the specified Ayah
*/
declare function findManzil(surah: Surah, ayah: AyahNo | undefined, data: RiwayaData): Manzil;
//#endregion
export { findManzil };