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.cjs"; import { AyahId, AyahNo, Surah } from "./types.cjs"; //#region src/findAyahIdBySurah.d.ts /** * Get the ayah ID for the given surah and ayah number. * @param surah - The surah number. * @param ayah - The ayah number within the surah. * @param data - The Lists object containing SurahList. * @returns The ayah ID for the given surah and ayah number. */ declare function findAyahIdBySurah(surah: Surah, ayah: AyahNo, data: RiwayaData): AyahId; //#endregion export { findAyahIdBySurah };