UNPKG

salat-first

Version:

Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab

31 lines (30 loc) 837 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MalikiConfig = void 0; const index_1 = require("./index"); const shadow_1 = require("../core/shadow"); /** * Maliki madhab configuration */ exports.MalikiConfig = { /** * The madhab enum value */ madhab: index_1.Madhab.Maliki, /** * The shadow calculation method used for Asr */ shadowMethod: shadow_1.ShadowMethod.Standard, /** * Preferred calculation method (for Morocco, typically Moroccan Habous) */ preferredMethod: "MoroccanHabous", /** * Shadow length multiplier for Asr */ shadowLengthMultiplier: 1, /** * Description of the madhab */ description: "Maliki is one of the four major schools of Sunni Islamic law, prevalent in North and West Africa.", };