UNPKG

salat-first

Version:

Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab

14 lines (13 loc) 627 B
import { CalculationParameters } from "../prayers/calculator"; import { Madhab } from "../madhab"; /** * Creates a new custom calculation parameters object * @param fajrAngle The angle of the sun below the horizon for Fajr * @param ishaAngle The angle of the sun below the horizon for Isha * @param madhab The madhab to use for Asr calculation * @param adjustments Custom time adjustments in minutes * @returns The custom calculation parameters */ export declare function createCustomParameters(fajrAngle: number, ishaAngle: number, madhab?: Madhab, adjustments?: { [key: string]: number; }): CalculationParameters;