UNPKG

breviarium

Version:

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

11 lines (10 loc) 881 B
import { LiturgicalColors } from '../prayers/types.ts'; export declare function formatDate(date: Date | undefined): string; export declare function showTeDeum(rank: string, season: string): boolean; export declare function getSalteryWeek(psalteryWeek: string): string; export declare function getCycle(cycleYear: string): string; export declare function getHexLiturgicalColor(color?: string): LiturgicalColors.GREEN_C | LiturgicalColors.PURPLE_C | LiturgicalColors.WHITE_C | LiturgicalColors.ROSE_C | LiturgicalColors.BLUE_C | LiturgicalColors.RED_C; export declare function searchPrayerForDay(prayer_collection: any[], dayCalendar: any): any; export declare function searchAllPrayersForDay(prayer_collection: any[], dayCalendar: any): any[]; export declare function mergeContentReturnTwo(items: any[]): any[]; export declare function mergeContentReturnOnlyOne(items: any[]): any;