muwaqqit
Version:
A powerful and flexible TypeScript library for calculating Islamic prayer times based on location, with customizable settings.
19 lines (18 loc) • 384 B
TypeScript
export interface PrayerTimesOptions {
city?: string;
country?: string;
latitude?: number;
longitude?: number;
method?: number;
format?: "12h" | "24h" | "iso";
timezone?: string;
}
export interface PrayerTimings {
Fajr: string;
Sunrise: string;
Dhuhr: string;
Asr: string;
Maghrib: string;
Isha: string;
[key: string]: string;
}