Interface TimeSliderRange

The time-slider.component.ts uses a single or double handled slider to specify a range of dates. This interface is the data associated with that range. It accommodates a single or double handled range.

For a single handled slider, the start and end dates are the same.

interface TimeSliderRange {
    end?: Date;
    start?: Date;
}

Properties

Properties

end?: Date
start?: Date