salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
20 lines (19 loc) • 547 B
TypeScript
import { CalculationParameters } from "../prayers/calculator";
import { Madhab } from "../madhab";
/**
* Creates calculation parameters for the Moroccan Habous method
* @returns The calculation parameters
*/
export declare function getMoroccanHabousParameters(): CalculationParameters;
/**
* Information about the Moroccan Habous method
*/
export declare const MoroccanHabousInfo: {
name: string;
description: string;
region: string;
defaultMadhab: Madhab;
fajrAngle: number;
ishaAngle: number;
source: string;
};