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