UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

12 lines (10 loc) 350 B
import { AyahNo, Surah } from "./types.cjs"; //#region src/getAyahCountInSurah.d.ts /** * Get the number of ayahs (verses) in the specified surah. * @param surah - The surah number. * @returns The number of ayahs in the specified surah. */ declare function getAyahCountInSurah(surah: Surah): AyahNo; //#endregion export { getAyahCountInSurah };