UNPKG

muwaqqit

Version:

A powerful and flexible TypeScript library for calculating Islamic prayer times based on location, with customizable settings.

9 lines (8 loc) 253 B
import { PrayerTimesOptions, PrayerTimings } from "./types"; export declare class PrayerTimes { private options; constructor(options: PrayerTimesOptions); getTimes(date: Date): Promise<PrayerTimings>; private to12h; private to24h; }