UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

15 lines (13 loc) 463 B
import { RiwayaData } from "./lists/types.cjs"; import { Surah, SurahMeta } from "./types.cjs"; //#region src/getSurahMeta.d.ts /** * Gets the metadata for the specified Surah. * * @param surahNum - The Surah to get the metadata for. * @param data - The Lists object containing SurahList. * @returns The metadata for the specified Surah. */ declare function getSurahMeta(surahNum: Surah, data: RiwayaData): SurahMeta; //#endregion export { getSurahMeta };