salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
31 lines (30 loc) • 809 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HanbaliConfig = void 0;
const index_1 = require("./index");
const shadow_1 = require("../core/shadow");
/**
* Hanbali madhab configuration
*/
exports.HanbaliConfig = {
/**
* The madhab enum value
*/
madhab: index_1.Madhab.Hanbali,
/**
* The shadow calculation method used for Asr
*/
shadowMethod: shadow_1.ShadowMethod.Standard,
/**
* Preferred calculation method
*/
preferredMethod: "UmmAlQura",
/**
* Shadow length multiplier for Asr
*/
shadowLengthMultiplier: 1,
/**
* Description of the madhab
*/
description: "Hanbali is one of the four major schools of Sunni Islamic law, prevalent in Saudi Arabia and other Gulf states.",
};