Type Alias: Modifiers
Modifiers =
Record
<string
,boolean
>
Defined in: src/types/shared.ts:304
Represents the modifiers that match a specific day in the calendar.
Example
const modifiers: Modifiers = {
today: true, // The day is today
selected: false, // The day is not selected
weekend: true // Custom modifier for weekends
};