breviarium
Version:
Typescript library that generates liturgical calendars and praying content of the Roman Rite of the Roman Catholic Church
8 lines (7 loc) • 329 B
TypeScript
import { PrayerManagerInterface } from './prayer-manager-interface.ts';
import { LiturgyInformation } from './prayers/types.ts';
export interface BreviariumInterface extends PrayerManagerInterface {
getCurrentDate(): Date;
setDate(date: Date): void;
getLiturgyInformation(date?: Date): Promise<LiturgyInformation>;
}