quran-meta
Version:
Library with meta data and functionality related to Holy Quran
9 lines (8 loc) • 340 B
TypeScript
import { AyahId, AyahNo, Surah } from "./types";
/**
* 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.
*/
export declare function findAyahIdBySurah(surah: Surah, ayah: AyahNo): AyahId;