UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

14 lines (12 loc) 429 B
import { AyahId, AyahNo, Page, Surah } from "./types.cjs"; //#region src/findPage.d.ts /** * Finds the page number for the given Surah and Ayah number. * * @param surah - The Surah to find the page for. * @param ayah - The Ayah number to find the page for. * @returns The page number for the given Surah and Ayah. */ declare function findPage(surah: Surah, ayah?: AyahNo | AyahId): Page; //#endregion export { findPage };