salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
28 lines (27 loc) • 611 B
TypeScript
import { Madhab } from "./index";
import { ShadowMethod } from "../core/shadow";
/**
* Maliki madhab configuration
*/
export declare const MalikiConfig: {
/**
* The madhab enum value
*/
madhab: Madhab;
/**
* The shadow calculation method used for Asr
*/
shadowMethod: ShadowMethod;
/**
* Preferred calculation method (for Morocco, typically Moroccan Habous)
*/
preferredMethod: string;
/**
* Shadow length multiplier for Asr
*/
shadowLengthMultiplier: number;
/**
* Description of the madhab
*/
description: string;
};