@progress/kendo-react-dateinputs
Version:
KendoReact Date Inputs package
18 lines (17 loc) • 346 B
TypeScript
/**
* The type that defines the selection range of the Calendar.
*/
export interface SelectionRange {
/**
* The beginning of the selection range.
*/
start: Date | null;
/**
* The end of the selection range.
*/
end: Date | null;
}
/**
* @hidden
*/
export declare const EMPTY_SELECTIONRANGE: SelectionRange;