salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
31 lines (30 loc) • 820 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HanafiConfig = void 0;
const index_1 = require("./index");
const shadow_1 = require("../core/shadow");
/**
* Hanafi madhab configuration
*/
exports.HanafiConfig = {
/**
* The madhab enum value
*/
madhab: index_1.Madhab.Hanafi,
/**
* The shadow calculation method used for Asr
*/
shadowMethod: shadow_1.ShadowMethod.Hanafi,
/**
* Preferred calculation method
*/
preferredMethod: "Karachi",
/**
* Shadow length multiplier for Asr
*/
shadowLengthMultiplier: 2,
/**
* Description of the madhab
*/
description: "Hanafi is one of the four major schools of Sunni Islamic law, prevalent in Central Asia, South Asia, and parts of the Middle East.",
};