UNPKG

@progress/kendo-react-dateinputs

Version:
18 lines (17 loc) 346 B
/** * 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;