UNPKG

breviarium

Version:

Typescript library that generates liturgical calendars and praying content of the Roman Rite of the Roman Catholic Church

7 lines (6 loc) 304 B
import { LiturgyInformationOutput, PrayerManagerInterface } from './prayer-manager-interface.ts'; export interface BreviariumInterface extends PrayerManagerInterface { getCurrentDate(): Date; setDate(date: Date): void; getLiturgyInformation(date?: Date): Promise<LiturgyInformationOutput>; }