quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 394 B
text/typescript
import { AyahNo, Surah, SurahAyah } from "./types.cjs";
//#region src/nextAyah.d.ts
/**
* Get the next ayah for the given surah and ayah number.
* @param surah - The surah number.
* @param ayah - The ayah number within the surah.
* @returns The surah and ayah number of the next ayah.
*/
declare function nextAyah(surah: Surah, ayah: AyahNo): SurahAyah;
//#endregion
export { nextAyah };