quran-meta
Version:
Library with meta data and functionality related to Holy Quran
13 lines (11 loc) • 453 B
text/typescript
import { AyahId, RubAlHizbMeta } from "./types.cjs";
//#region src/getRubAlHizbMetaByAyahId.d.ts
/**
* Finds the Juz, Hizb, and Rub-el-Hizb id for the given Ayah ID.
*
* @param ayahId - The Ayah ID to find the Juz, Hizb, and Hizb ID for.
* @returns An object containing the Juz, Hizb, and Hizb ID for the given Ayah ID.
*/
declare function getRubAlHizbMetaByAyahId(ayahId: AyahId): RubAlHizbMeta;
//#endregion
export { getRubAlHizbMetaByAyahId };