packages/components/eui-date-range-selector/models/eui-date-range-selector-dates.model.ts
Represents a date range with start and end boundaries. Used by the date range selector component to encapsulate selected date intervals. Supports flexible date types including Date objects, ISO strings, or custom date representations.
Properties |
| endRange |
endRange:
|
Type : any
|
|
The ending boundary of the date range. Accepts Date objects, ISO date strings, or framework-specific date types (e.g., Luxon DateTime, Day.js). Must represent a date equal to or after startRange for a valid range. |
| startRange |
startRange:
|
Type : any
|
|
The starting boundary of the date range. Accepts Date objects, ISO date strings, or framework-specific date types (e.g., Luxon DateTime, Day.js). |