UNPKG

breviarium

Version:

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

47 lines (46 loc) 1.09 kB
import { Color } from '../../node_modules/romcal/rites/roman1969/dist/esm/romcal.js'; export declare enum LiturgicalSeasons { EASTER = "EASTER_TIME", CHRISTMAS = "CHRISTMAS_TIME", LENT = "LENT" } export declare enum PropertyCerpetualCalendar { Id = "id", Name = "name", Seasons = "seasons", Calendar = "calendar", Colors = "colors", Rank = "rank", Precedence = "precedence", Periods = "periods", Weekday = "weekday" } /** * Color string and color hexadecimal code */ export declare enum LiturgicalColors { GREEN = "GREEN", GREEN_C = "#70b26f", PURPLE = "PURPLE", PURPLE_C = "#794498", WHITE = "WHITE", WHITE_C = "#bdbdbd66", ROSE = "ROSE", ROSE_C = "#ff81f5", BLUE = "BLUE", BLUE_C = "#00bafe", RED = "RED", RED_C = "#ff5654" } export declare enum SalteryWeek { WEEK_1 = "WEEK_1", WEEK_2 = "WEEK_2", WEEK_3 = "WEEK_3", WEEK_4 = "WEEK_4" } export type LiturgyInformation = { psaltery_week?: string; cycle?: string; color?: Color; color_hex?: LiturgicalColors; };