UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

15 lines (13 loc) 540 B
import { RiwayaData } from "./lists/types.mjs"; import { AyahNo, Manzil, Surah } from "./types.mjs"; //#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 };