UNPKG

tdesign-react

Version:
13 lines (12 loc) 429 B
import type { SinglePanelProps } from '../panel/SinglePanel'; export interface TableDataProps extends SinglePanelProps { isRange?: boolean; start: Date | undefined; end?: Date | undefined; hoverStart?: Date | undefined; hoverEnd?: Date | undefined; minDate: Date | null; maxDate: Date | null; cancelRangeSelectLimit?: boolean; } export default function useTableData(props: TableDataProps): any[];