Type Alias: OnSelectHandler()<T>
OnSelectHandler<
T
>: (selected
,triggerDate
,modifiers
,e
) =>void
Shared handler type for onSelect
callback when a selection mode is set.
Type Parameters
Type Parameter | Description |
---|---|
T | The type of the selected item. |
Parameters
Parameter | Type | Description |
---|---|---|
selected | T | The selected item after the event. |
triggerDate | Date | The date when the event was triggered. |
modifiers | Modifiers | The modifiers associated with the event. |
e | React.MouseEvent | React.KeyboardEvent | The event object. |
Returns
void