salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
69 lines (68 loc) • 1.3 kB
TypeScript
/**
* Available prayer calculation methods
*/
export declare enum CalculationMethod {
/**
* Muslim World League
*/
MuslimWorldLeague = "MuslimWorldLeague",
/**
* Egyptian General Authority of Survey
*/
Egyptian = "Egyptian",
/**
* University of Islamic Sciences, Karachi
*/
Karachi = "Karachi",
/**
* Umm al-Qura University, Makkah
*/
UmmAlQura = "UmmAlQura",
/**
* Dubai
*/
Dubai = "Dubai",
/**
* Moonsighting Committee
*/
MoonsightingCommittee = "MoonsightingCommittee",
/**
* North America (ISNA)
*/
NorthAmerica = "NorthAmerica",
/**
* Kuwait
*/
Kuwait = "Kuwait",
/**
* Qatar
*/
Qatar = "Qatar",
/**
* Singapore
*/
Singapore = "Singapore",
/**
* Tehran
*/
Tehran = "Tehran",
/**
* Turkey
*/
Turkey = "Turkey",
/**
* Moroccan Habous (Ministry of Islamic Affairs)
*/
MoroccanHabous = "MoroccanHabous",
/**
* Custom method
*/
Custom = "Custom"
}
/**
* The default calculation method
*/
export declare const DEFAULT_METHOD = CalculationMethod.MoroccanHabous;
export * from "./standard";
export * from "./morocco";
export * from "./custom";