UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

14 lines (12 loc) 454 B
import { AyahMeta, Surah } from "./types.cjs"; //#region src/getAyahMetasForSurah.d.ts /** * Retrieves metadata for all ayahs in a specific surah. * * @param surahNumber - The surah number (1-114) * @returns Array of AyahMeta objects for each ayah in the surah * @throws RangeError If the surah number is not between 1 and 114 */ declare function getAyahMetasForSurah(surahNumber: Surah): AyahMeta[]; //#endregion export { getAyahMetasForSurah };