[Go to site: main page, start]

Interface CalendarConfig

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

Properties

Configuration of days.

description: string

A text description of the calendar configuration.

months: CalendarConfigMonths | null

Configuration of months.

name: string

The name of the calendar being used.

seasons: CalendarConfigSeasons | null

Configuration of seasons.

Configuration of years.