UNPKG

@bimeister/pupakit.calendar

Version:
8 lines (7 loc) 302 B
import { DayOfWeek } from '../enums/day-of-week.enum'; import { CalendarTranslation } from './calendar-translation.interface'; export interface BaseCalendarConfig { readonly startWeekday: DayOfWeek; readonly yearsRange: number; readonly translations: Record<string, CalendarTranslation>; }