salat-first
Version:
Islamic prayer times calculation with special support for Moroccan methods and Maliki madhab
25 lines (24 loc) • 587 B
TypeScript
import { PrayerTimes } from "./times";
/**
* Class for calculating Sunnah prayer times
*/
export declare class SunnahTimes {
/**
* Time for the middle of the night
*/
middleOfTheNight: Date;
/**
* Time for the last third of the night
*/
lastThirdOfTheNight: Date;
/**
* Creates a new sunnah times object
* @param prayerTimes The prayer times
*/
constructor(prayerTimes: PrayerTimes);
/**
* Returns a string representation of the sunnah times
* @returns String with sunnah times
*/
toString(): string;
}