SelectionRange
Interface
Defines the structure for a Calendar date selection range.
This interface represents a date range with a start and end date, commonly used in range selection scenarios.
Definition
Package:@progress/kendo-angular-dateinputs
Syntax:
TS
const range: SelectionRange = {
start: new Date(2023, 0, 1),
end: new Date(2023, 0, 31)
};