quran-meta
Version:
Library with meta data and functionality related to Holy Quran
15 lines (13 loc) • 463 B
text/typescript
import { RiwayaData } from "./lists/types.mjs";
import { Surah, SurahMeta } from "./types.mjs";
//#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 };