interface CalendarConfig {
    days: CalendarConfigDays;
    description: string;
    months: null | CalendarConfigMonths;
    name: string;
    seasons: null | CalendarConfigSeasons;
    years: CalendarConfigYears;
}

Properties

Configuration of days.

description: string

A text description of the calendar configuration.

months: null | CalendarConfigMonths

Configuration of months.

name: string

The name of the calendar being used.

seasons: null | CalendarConfigSeasons

Configuration of seasons.

Configuration of years.