adhan-extended
Version:
High precision Islamic prayer time library (extended)
9 lines (8 loc) • 371 B
TypeScript
import type Coordinates from './Coordinates';
declare const HighLatitudeRule: {
readonly MiddleOfTheNight: "middleofthenight";
readonly SeventhOfTheNight: "seventhofthenight";
readonly TwilightAngle: "twilightangle";
readonly recommended: (coordinates: Coordinates) => "middleofthenight" | "seventhofthenight";
};
export default HighLatitudeRule;