quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 418 B
text/typescript
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.
* @returns The ayah ID for the given surah and ayah number.
*/
declare function findAyahIdBySurah(surah: Surah, ayah: AyahNo): AyahId;
//#endregion
export { findAyahIdBySurah };