A definition of the days of the week within a calendar.

interface CalendarConfigDay {
    abbreviation?: string;
    isRestDay?: boolean;
    name: string;
    ordinal: number;
}

Properties

abbreviation?: string

The abbreviated name of the weekday.

isRestDay?: boolean

Is this weekday considered a rest day (weekend)?

name: string

The full name of the weekday.

ordinal: number

The ordinal position of this weekday in the week.