UNPKG

tdesign-react

Version:
27 lines (26 loc) 665 B
import React from 'react'; export interface DatePickerCellProps { time?: string; text: [string, number]; value: Date; active: boolean; highlight: boolean; disabled: boolean; startOfRange: boolean; endOfRange: boolean; hoverHighlight: boolean; hoverStartOfRange: boolean; hoverEndOfRange: boolean; additional: boolean; weekOfYear: boolean; now: boolean; firstDayOfMonth: boolean; lastDayOfMonth: boolean; onClick: Function; onMouseEnter: Function; } declare const DatePickerCell: { (props: DatePickerCellProps): React.JSX.Element; displayName: string; }; export default DatePickerCell;