UNPKG

quran-meta

Version:

Library with meta data and functionality related to Holy Quran

10 lines (9 loc) 394 B
import { Page, PageMeta } from "./types"; /** * Retrieves metadata for a specific page of the Quran. * * @param pageNum - The page number to retrieve metadata for (1-604) * @returns An object containing the page number, first ayah, and last ayah on the page * @throws RangeError If the page number is not between 1 and 604 */ export declare function getPageMeta(pageNum: Page): PageMeta;