quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 402 B
text/typescript
import { AyahNo, Surah, SurahAyah } from "./types.cjs";
//#region src/prevAyah.d.ts
/**
* Get the previous 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 previous ayah.
*/
declare function prevAyah(surah: Surah, ayah: AyahNo): SurahAyah;
//#endregion
export { prevAyah };