UNPKG

@bimeister/pupakit.calendar

Version:
9 lines (8 loc) 344 B
import { CalendarTextKey } from '../enums/calendar-text-key.enum'; import { DayOfWeek } from '../enums/day-of-week.enum'; import { MonthIndex } from '../enums/month-index.enum'; export interface CalendarTranslation { texts: Record<CalendarTextKey, string>; weekdays: Record<DayOfWeek, string>; months: Record<MonthIndex, string>; }